This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author anacrolix
Recipients anacrolix
Date 2012-01-25.15:20:49
SpamBayes Score 5.7681714e-08
Marked as misclassified No
Message-id <1327504850.36.0.736318881933.issue13859@psf.upfronthosting.co.za>
In-reply-to
Content
There's a lingering StandardError referenced in the logging module.

StandardError was removed in Python 3, and execution across this code path generates a NameError:

  File "/home/matt/src/cpython/Lib/logging/__init__.py", line 291, in __init__
    except StandardError: #pragma: no cover
NameError: global name 'StandardError' is not defined

Patch attached.
History
Date User Action Args
2012-01-25 15:20:50anacrolixsetrecipients: + anacrolix
2012-01-25 15:20:50anacrolixsetmessageid: <1327504850.36.0.736318881933.issue13859@psf.upfronthosting.co.za>
2012-01-25 15:20:49anacrolixlinkissue13859 messages
2012-01-25 15:20:49anacrolixcreate