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 py.user
Recipients py.user, terry.reedy
Date 2011-07-22.00:29:53
SpamBayes Score 0.04829034
Marked as misclassified No
Message-id <1311294594.34.0.131955298807.issue12606@psf.upfronthosting.co.za>
In-reply-to
Content
the former could be like:
del cmpr[0][::-2], cmpr[1][::2], cmpr[2][1::2]

it's ok

how to implement this with del ?
>>> cmpr
[bytearray(b'abcd'), bytearray(b'efgh'), bytearray(b'ijkl')]
>>> cmpr[0][::-2], cmpr[1][::2] = (), cmpr[2][1::2]
>>> cmpr
[bytearray(b'ac'), bytearray(b'jflh'), bytearray(b'ijkl')]
>>>
History
Date User Action Args
2011-07-22 00:29:54py.usersetrecipients: + py.user, terry.reedy
2011-07-22 00:29:54py.usersetmessageid: <1311294594.34.0.131955298807.issue12606@psf.upfronthosting.co.za>
2011-07-22 00:29:53py.userlinkissue12606 messages
2011-07-22 00:29:53py.usercreate