summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bytes.py
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2013-01-26 12:07:36 (GMT)
committerStefan Krah <skrah@bytereef.org>2013-01-26 12:07:36 (GMT)
commitc4a10f59703e91e5085f927e98a84d82831e3d9c (patch)
treec68346a677809da223b0109d9117a4450c2c00db /Lib/test/test_bytes.py
parentf86e484ef2dc6b1d164a2d1c168e46b67bccc7e9 (diff)
parent6e572b8b2e34bc88d0485c1ed1c0e4a5157e3a62 (diff)
downloadcpython-c4a10f59703e91e5085f927e98a84d82831e3d9c.zip
cpython-c4a10f59703e91e5085f927e98a84d82831e3d9c.tar.gz
cpython-c4a10f59703e91e5085f927e98a84d82831e3d9c.tar.bz2
Merge 3.3.
Diffstat (limited to 'Lib/test/test_bytes.py')
-rw-r--r--Lib/test/test_bytes.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
index acf9daf..f12f911 100644
--- a/Lib/test/test_bytes.py
+++ b/Lib/test/test_bytes.py
@@ -1172,6 +1172,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__)