Message7245
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. |
|
Date |
User |
Action |
Args |
2012-06-18 21:49:02 | Arfrever | set | messageid: <1340056142.56.0.909542309466.issue1906@psf.upfronthosting.co.za> |
2012-06-18 21:49:02 | Arfrever | set | recipients:
+ Arfrever, fwierzbicki, tebeka |
2012-06-18 21:49:02 | Arfrever | link | issue1906 messages |
2012-06-18 21:49:02 | Arfrever | create | |
|