Issue 17112: Some doctest-based tests fail when run with python -OO (original) (raw)

Issue17112

Created on 2013-02-03 09:27 by ned.deily, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg181253 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2013-02-03 09:27
Seen on the AMD64 Mountain Lion Optimized [SB] 2.7 buildbot (http://buildbot.python.org/all/builders/AMD64%20Mountain%20Lion%20Optimized%20%5BSB%5D%202.7): test test_doctest crashed -- <type 'exceptions.AssertionError'>: filter ('backquote not supported', SyntaxWarning) did not catch any warning Traceback (most recent call last): File "./Lib/test/regrtest.py", line 896, in runtest_inner File "/Users/cpython/buildslave/optimized/2.7.snakebite-mountainlion-amd64-optimized/build/Lib/test/test_doctest.py", line 2684, in test_main test_support.run_doctest(test_doctest, verbosity=True) File "/Users/cpython/buildslave/optimized/2.7.snakebite-mountainlion-amd64-optimized/build/Lib/contextlib.py", line 24, in __exit__ self.gen.next() File "/Users/cpython/buildslave/optimized/2.7.snakebite-mountainlion-amd64-optimized/build/Lib/test/test_support.py", line 641, in _filterwarnings missing[0]) AssertionError: filter ('backquote not supported', SyntaxWarning) did not catch any warning The same failure is seen in test_syntax and test_zipimport_support. That buildbot builds the interpreter --with-pydebug but runs the test suite with -OO: ./python.exe -Wd -3 -E -tt -OO -R ./Lib/test/regrtest.py -uall -rwW I am able to reproduce the buildbot failures when run as above. Without "-OO", the tests no longer fail.
msg181254 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-02-03 09:34
Without -3 option tests passed.
msg370430 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-05-31 12:50
Python 2.7 is no longer supported.
History
Date User Action Args
2022-04-11 14:57:41 admin set github: 61314
2020-05-31 12:50:42 serhiy.storchaka set status: open -> closedresolution: out of datemessages: + stage: resolved
2013-02-03 09:34:35 serhiy.storchaka set nosy: + serhiy.storchakamessages: +
2013-02-03 09:27:28 ned.deily create