Message7245

Author Arfrever
Recipients Arfrever, fwierzbicki, tebeka
Date 2012-06-18.21:49:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340056142.56.0.909542309466.issue1906@psf.upfronthosting.co.za>
In-reply-to
Content
Jython 2.7 (revision bfb99e7c29be):

$ jython2.7 -Walways -c 'import warnings; warnings.warn("Some warning", DeprecationWarning)'
$ jython2.7 -Walways -c 'import warnings; warnings.warn("Some warning", RuntimeWarning)'
-c:1: RuntimeWarning: Some warning

CPython 2.7:

$ python2.7 -Walways -c 'import warnings; warnings.warn("Some warning", DeprecationWarning)'
-c:1: DeprecationWarning: Some warning
$ python2.7 -Walways -c 'import warnings; warnings.warn("Some warning", RuntimeWarning)'
-c:1: RuntimeWarning: Some warning

Also see message 7174.
History
Date User Action Args
2012-06-18 21:49:02Arfreversetmessageid: <1340056142.56.0.909542309466.issue1906@psf.upfronthosting.co.za>
2012-06-18 21:49:02Arfreversetrecipients: + Arfrever, fwierzbicki, tebeka
2012-06-18 21:49:02Arfreverlinkissue1906 messages
2012-06-18 21:49:02Arfrevercreate