]> granicus.if.org Git - python/commit
Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop'
authorThomas Wouters <thomas@python.org>
Wed, 23 Aug 2006 23:20:29 +0000 (23:20 +0000)
committerThomas Wouters <thomas@python.org>
Wed, 23 Aug 2006 23:20:29 +0000 (23:20 +0000)
commit9a6e62b947ebb5547ca9a164f6145a461b98d86a
treed566337c0211e6a515a987d0d682635885973f83
parentfbfe0936078e16829f36a6e61b511c123fd17b17
Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop'
being before 'start') would actually assign to b[0:0] (or whatever 'stop'
was)
Lib/test/test_bytes.py
Objects/bytesobject.c