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
commit9fcf71f9afcd1ea281805a4d70c282b9d11849ec (patch)
tree5355adb0e150102793e6474234a41925f2990bcd /Lib/concurrent
parentaedbb2971a8bd5535108f37f9cfa7cd527c5dc9e (diff)
downloadcpython-9fcf71f9afcd1ea281805a4d70c282b9d11849ec.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."""