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 serhiy.storchaka
Recipients ezio.melotti, giampaolo.rodola, michael.foord, rbcollins, rhettinger, serhiy.storchaka
Date 2017-05-10.13:09:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1494421798.53.0.460135236866.issue30190@psf.upfronthosting.co.za>
In-reply-to
Content
Warnings are not shown when the source is already compiled to .pyc file.

$ find -name '*.py[co]' -exec rm '{}' +
$ ./python -Wa -m test test_unittest
Run tests sequentially
0:00:00 load avg: 0.54 [1/1] test_unittest
/home/serhiy/py/cpython/Lib/unittest/test/test_assertions.py:228: DeprecationWarning: invalid escape sequence \(
  ["^1 != 2 within 7 places \(1 difference\)$", "^oops$",
/home/serhiy/py/cpython/Lib/unittest/test/test_assertions.py:229: DeprecationWarning: invalid escape sequence \(
  "^1 != 2 within 7 places \(1 difference\)$",
/home/serhiy/py/cpython/Lib/unittest/test/test_assertions.py:230: DeprecationWarning: invalid escape sequence \(
  "^1 != 2 within 7 places \(1 difference\) : oops$"])
1 test OK.

Total duration: 5 sec
Tests result: SUCCESS
History
Date User Action Args
2017-05-10 13:09:58serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, giampaolo.rodola, rbcollins, ezio.melotti, michael.foord
2017-05-10 13:09:58serhiy.storchakasetmessageid: <1494421798.53.0.460135236866.issue30190@psf.upfronthosting.co.za>
2017-05-10 13:09:58serhiy.storchakalinkissue30190 messages
2017-05-10 13:09:58serhiy.storchakacreate