diff options
Diffstat (limited to 'Lib/test/test_property.py')
-rw-r--r-- | Lib/test/test_property.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_property.py b/Lib/test/test_property.py index 6d6bece..e5fc174 100644 --- a/Lib/test/test_property.py +++ b/Lib/test/test_property.py @@ -118,7 +118,7 @@ class PropertyTests(unittest.TestCase): self.assertEqual(base.__class__.spam.__doc__, "spam spam spam") self.assertEqual(sub.__class__.spam.__doc__, "spam spam spam") - @unittest.skipIf(sys.flags.optimize >= 1, + @unittest.skipIf(sys.flags.optimize >= 2, "Docstrings are omitted with -O2 and above") def test_property_getter_doc_override(self): newgettersub = PropertySubNewGetter() |