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 rbcollins
Recipients Jim.Jewett, The Compiler, ezio.melotti, martin.panter, mbussonn, ncoghlan, njs, rbcollins, serhiy.storchaka, takluyver, terry.reedy
Date 2015-08-24.21:51:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440453104.98.0.660769484541.issue24294@psf.upfronthosting.co.za>
In-reply-to
Content
On testing this - I don't think subprocess tests are necessarily needed.

The scenarios are these (from Nick's comment):
Test frameworks.
 - there are two in the standard library. unittest and doctest.
 - unittest's code paths end up going through 'TestProgram'.
 - doctest via 'testmod'.
 - so alter the warning configuration in those APIs to enable both DeprecationWarning and PendingDeprecationWarning. I don't think (right now anyhow :)) that we need a 'do not do this' flag in them..

Interactive REPL. This includes IDLE in my opinion.
 - there are three here IIRC - IDLE and the cPython and a helper module (which may or may not be the REPL for ./python - I haven't climbed through that code in ---ages---).
 - Again here I'd just enable DW in those code paths. Don't worry about whether its a tty or not: thats irrelevant. If the REPL enters, its the REPL and we should treat it like a user. If someone is driving the REPL programattically its likely one of: a remote session - so they should see it - or its a test harness - so they should see it.


Everything else.
Don't change anything here.

On docs: yes, we should update the docs for:
 - each changed module
 - the warnings module itself.
History
Date User Action Args
2015-08-24 21:51:45rbcollinssetrecipients: + rbcollins, terry.reedy, ncoghlan, ezio.melotti, njs, takluyver, martin.panter, Jim.Jewett, serhiy.storchaka, The Compiler, mbussonn
2015-08-24 21:51:44rbcollinssetmessageid: <1440453104.98.0.660769484541.issue24294@psf.upfronthosting.co.za>
2015-08-24 21:51:44rbcollinslinkissue24294 messages
2015-08-24 21:51:44rbcollinscreate