diff options
author | Brian Quinlan <brian@sweetapp.com> | 2010-12-28 21:14:34 (GMT) |
---|---|---|
committer | Brian Quinlan <brian@sweetapp.com> | 2010-12-28 21:14:34 (GMT) |
commit | 251cc846f3f7c150727370f00b8062b002a9e154 (patch) | |
tree | 4339712b4531812a6763a00690e0678e76113c70 /Lib/concurrent/futures | |
parent | dad532f7def9917707d9705fcd9201413e42ef75 (diff) | |
download | cpython-251cc846f3f7c150727370f00b8062b002a9e154.zip cpython-251cc846f3f7c150727370f00b8062b002a9e154.tar.gz cpython-251cc846f3f7c150727370f00b8062b002a9e154.tar.bz2 |
Does not install a logging handler. Fixes issue 10626.
Diffstat (limited to 'Lib/concurrent/futures')
-rw-r--r-- | Lib/concurrent/futures/_base.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/concurrent/futures/_base.py b/Lib/concurrent/futures/_base.py index 0bbb85b..79b91d4 100644 --- a/Lib/concurrent/futures/_base.py +++ b/Lib/concurrent/futures/_base.py @@ -41,8 +41,6 @@ _STATE_TO_DESCRIPTION_MAP = { # Logger for internal use by the futures package. LOGGER = logging.getLogger("concurrent.futures") -STDERR_HANDLER = logging.StreamHandler() -LOGGER.addHandler(STDERR_HANDLER) class Error(Exception): """Base class for all future-related exceptions.""" |