diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-08 16:16:18 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-08 16:16:18 (GMT) |
commit | b12cb6a5509dbaafa05706dd64861bfef9fa42d7 (patch) | |
tree | d0021701f3d6d5cba2c293bf769c861e39f6f9b1 /Lib/test/test_inspect.py | |
parent | ca616a2709951f2ef8534aaa5933af4cc9d1594d (diff) | |
parent | 3e60a9d602c85b738dc74a3c8a196650822e8619 (diff) | |
download | cpython-b12cb6a5509dbaafa05706dd64861bfef9fa42d7.zip cpython-b12cb6a5509dbaafa05706dd64861bfef9fa42d7.tar.gz cpython-b12cb6a5509dbaafa05706dd64861bfef9fa42d7.tar.bz2 |
Issue #19535: Fixed test_docxmlrpc, test_functools, test_inspect, and
test_statistics when python is run with -OO.
Diffstat (limited to 'Lib/test/test_inspect.py')
-rw-r--r-- | Lib/test/test_inspect.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index 365f592..520bf0e 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -2529,7 +2529,8 @@ class TestMain(unittest.TestCase): # Just a quick sanity check on the output self.assertIn(module.__name__, output) self.assertIn(module.__file__, output) - self.assertIn(module.__cached__, output) + if not sys.flags.optimize: + self.assertIn(module.__cached__, output) self.assertEqual(err, b'') |