Does not install a logging handler. Fixes issue 10626.

This commit is contained in:
Brian Quinlan 2010-12-28 21:14:34 +00:00
parent dad532f7de
commit 251cc846f3
2 changed files with 3 additions and 12 deletions

View file

@ -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."""