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 serhiy.storchaka
Recipients BreamoreBoy, serhiy.storchaka
Date 2013-12-21.20:00:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1387656049.0.0.00289554318649.issue20047@psf.upfronthosting.co.za>
In-reply-to
Content
Similar bug was in 3.2:

>>> ba = bytearray(range(8))
>>> ba[2:6]
bytearray(b'\x02\x03\x04\x05')
>>> ba[2:6] = 2
>>> ba
bytearray(b'\x00\x01\x00\x00\x06\x07')

Now it is fixed.
History
Date User Action Args
2013-12-21 20:00:49serhiy.storchakasetrecipients: + serhiy.storchaka, BreamoreBoy
2013-12-21 20:00:49serhiy.storchakasetmessageid: <1387656049.0.0.00289554318649.issue20047@psf.upfronthosting.co.za>
2013-12-21 20:00:48serhiy.storchakalinkissue20047 messages
2013-12-21 20:00:48serhiy.storchakacreate