This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author flox
Recipients flox
Date 2010-01-03.20:04:27
SpamBayes Score 0.0057744496
Marked as misclassified No
Message-id <1262549069.0.0.191506722529.issue7625@psf.upfronthosting.co.za>
In-reply-to
Content
There's not enough tests to verify such cases:
 - b.split()[0] is not b
 - b.rsplit()[0] is not b
 - b.splitlines()[0] is not b
 - b.partition('.')[0] is not b
 - b.rpartition('.')[0] is not b
 - (other ?)

However similar tests exist in Lib/test/test_bytes:
 * ByteArrayTest.test_copied()
   -> some tests for ('replace', 'translate')
 * ByteArrayTest.test_partition_bytearray_doesnt_share_nullstring
   -> some tests for ('partition', 'rpartition')
 * BytearrayPEP3137Test.test_returns_new_copy()
   -> some tests for ('zfill', 'rjust', 'ljust', 'center')
History
Date User Action Args
2010-01-03 20:04:29floxsetrecipients: + flox
2010-01-03 20:04:29floxsetmessageid: <1262549069.0.0.191506722529.issue7625@psf.upfronthosting.co.za>
2010-01-03 20:04:27floxlinkissue7625 messages
2010-01-03 20:04:27floxcreate