diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-27 18:03:39 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-27 18:03:39 (GMT) |
commit | 26f116651030c77c93f0a98026baf7812963a30c (patch) | |
tree | 474015b8b08aa48ab9eeca569cb22109f0028f08 /Lib/distutils | |
parent | 60cc32382f0a568723da8cb3c1b3fc532ab41d58 (diff) | |
parent | 9d0add0c7e513a92ee4321aa5be70121c4c1e1e7 (diff) | |
download | cpython-26f116651030c77c93f0a98026baf7812963a30c.zip cpython-26f116651030c77c93f0a98026baf7812963a30c.tar.gz cpython-26f116651030c77c93f0a98026baf7812963a30c.tar.bz2 |
Issue #17041: Fix testing when Python is configured with the
--without-doc-strings.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/tests/test_build_ext.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/distutils/tests/test_build_ext.py b/Lib/distutils/tests/test_build_ext.py index 090eacf..065a6a2 100644 --- a/Lib/distutils/tests/test_build_ext.py +++ b/Lib/distutils/tests/test_build_ext.py @@ -73,8 +73,9 @@ class BuildExtTestCase(TempdirManager, self.assertEqual(xx.foo(2, 5), 7) self.assertEqual(xx.foo(13,15), 28) self.assertEqual(xx.new().demo(), None) - doc = 'This is a template module just for instruction.' - self.assertEqual(xx.__doc__, doc) + if support.HAVE_DOCSTRINGS: + doc = 'This is a template module just for instruction.' + self.assertEqual(xx.__doc__, doc) self.assertTrue(isinstance(xx.Null(), xx.Null)) self.assertTrue(isinstance(xx.Str(), xx.Str)) |