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 skrah
Recipients skrah, vstinner
Date 2014-06-24.09:45:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403603116.17.0.439869456138.issue21856@psf.upfronthosting.co.za>
In-reply-to
Content
It's a slice of length zero:

>>> b = bytearray([1,2,3,4])
>>> m = memoryview(b)
>>>
>>> b2 = b[2**100:]
>>> m2 = m[2**100:]
>>>
>>> list(b2)
[]
>>> list(m2)
[]
>>>
History
Date User Action Args
2014-06-24 09:45:16skrahsetrecipients: + skrah, vstinner
2014-06-24 09:45:16skrahsetmessageid: <1403603116.17.0.439869456138.issue21856@psf.upfronthosting.co.za>
2014-06-24 09:45:16skrahlinkissue21856 messages
2014-06-24 09:45:16skrahcreate