Adapt test_bytes for a build --without-doc-strings.

This commit is contained in:
Stefan Krah 2013-01-26 13:06:36 +01:00
parent 244b687374
commit 6e572b8b2e
2 changed files with 5 additions and 0 deletions

View file

@ -1158,6 +1158,7 @@ class AssortedBytesTest(unittest.TestCase):
self.assertEqual(bytes(b"abc") < b"ab", False)
self.assertEqual(bytes(b"abc") <= b"ab", False)
@test.support.requires_docstrings
def test_doc(self):
self.assertIsNotNone(bytearray.__doc__)
self.assertTrue(bytearray.__doc__.startswith("bytearray("), bytearray.__doc__)