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 martin.panter
Recipients Unit03, berker.peksag, martin.panter, maurosr, milap.py, python-dev, r.david.murray, serhiy.storchaka, taddeimania
Date 2015-07-18.12:10:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1437221440.03.0.0744418319037.issue23883@psf.upfronthosting.co.za>
In-reply-to
Content
That raiseExecptions thing looks like a typo to me. The code should probably be monkey patching the module variable, and restoring it after the test. Then you wouldn’t need to add your extra typoed version to the blacklist.

In the logging module, I reckon raiseExceptions (non-typoed) should actually be added to __all__. It is documented under Handler.handleError().

pickletools.OpcodeInfo: It is briefly mentioned as the type of the first item of genops(). I don’t have a strong opinion, but I tended to agree with your previous patch which added it to __all__.

threading.ThreadError: It is not documented, but it was already in __all__. I think it should be restored, in case someone’s code is relying on it.
History
Date User Action Args
2015-07-18 12:10:40martin.pantersetrecipients: + martin.panter, r.david.murray, python-dev, berker.peksag, serhiy.storchaka, milap.py, maurosr, taddeimania, Unit03
2015-07-18 12:10:40martin.pantersetmessageid: <1437221440.03.0.0744418319037.issue23883@psf.upfronthosting.co.za>
2015-07-18 12:10:40martin.panterlinkissue23883 messages
2015-07-18 12:10:39martin.pantercreate