Issue #17041: Fix testing when Python is configured with the

--without-doc-strings.
This commit is contained in:
Serhiy Storchaka 2013-01-27 20:03:39 +02:00
commit 26f1166510
6 changed files with 53 additions and 28 deletions

View file

@ -290,6 +290,7 @@ class TestUpdateWrapper(unittest.TestCase):
with self.assertRaises(AttributeError):
functools.update_wrapper(wrapper, f, assign, update)
@support.requires_docstrings
@unittest.skipIf(sys.flags.optimize >= 2,
"Docstrings are omitted with -O2 and above")
def test_builtin_update(self):