Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/distlib/__init__.py @ 2:6af9afd405e9 draft
"planemo upload commit 0a63dd5f4d38a1f6944587f52a8cd79874177fc1"
author | shellac |
---|---|
date | Thu, 14 May 2020 14:56:58 -0400 (2020-05-14) |
parents | 26e78fe6e8c4 |
children |
comparison
equal
deleted
inserted
replaced
1:75ca89e9b81c | 2:6af9afd405e9 |
---|---|
1 # -*- coding: utf-8 -*- | |
2 # | |
3 # Copyright (C) 2012-2019 Vinay Sajip. | |
4 # Licensed to the Python Software Foundation under a contributor agreement. | |
5 # See LICENSE.txt and CONTRIBUTORS.txt. | |
6 # | |
7 import logging | |
8 | |
9 __version__ = '0.3.0' | |
10 | |
11 class DistlibException(Exception): | |
12 pass | |
13 | |
14 try: | |
15 from logging import NullHandler | |
16 except ImportError: # pragma: no cover | |
17 class NullHandler(logging.Handler): | |
18 def handle(self, record): pass | |
19 def emit(self, record): pass | |
20 def createLock(self): self.lock = None | |
21 | |
22 logger = logging.getLogger(__name__) | |
23 logger.addHandler(NullHandler()) |