summaryrefslogtreecommitdiff
path: root/Lib/concurrent
diff options
context:
space:
mode:
authorBrian Quinlan <brian@sweetapp.com>2010-12-28 21:14:34 +0000
committerBrian Quinlan <brian@sweetapp.com>2010-12-28 21:14:34 +0000
commit251cc846f3f7c150727370f00b8062b002a9e154 (patch)
tree4339712b4531812a6763a00690e0678e76113c70 /Lib/concurrent
parentdad532f7def9917707d9705fcd9201413e42ef75 (diff)
downloadcpython-git-251cc846f3f7c150727370f00b8062b002a9e154.tar.gz
Does not install a logging handler. Fixes issue 10626.
Diffstat (limited to 'Lib/concurrent')
-rw-r--r--Lib/concurrent/futures/_base.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/concurrent/futures/_base.py b/Lib/concurrent/futures/_base.py
index 0bbb85bd46..79b91d495f 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."""