summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_functools.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_functools.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_functools.py')
-rw-r--r--Lib/test/test_functools.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py
index d044237..75ae7f3 100644
--- a/Lib/test/test_functools.py
+++ b/Lib/test/test_functools.py
@@ -1126,7 +1126,8 @@ class TestSingleDispatch(unittest.TestCase):
"Simple test"
return "Test"
self.assertEqual(g.__name__, "g")
- self.assertEqual(g.__doc__, "Simple test")
+ if sys.flags.optimize < 2:
+ self.assertEqual(g.__doc__, "Simple test")
@unittest.skipUnless(decimal, 'requires _decimal')
@support.cpython_only