summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_inspect.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-08 16:16:18 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-08 16:16:18 (GMT)
commitb12cb6a5509dbaafa05706dd64861bfef9fa42d7 (patch)
treed0021701f3d6d5cba2c293bf769c861e39f6f9b1 /Lib/test/test_inspect.py
parentca616a2709951f2ef8534aaa5933af4cc9d1594d (diff)
parent3e60a9d602c85b738dc74a3c8a196650822e8619 (diff)
downloadcpython-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.py3
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'')