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 mblahay
Recipients mblahay, r.david.murray, rhettinger, serhiy.storchaka, staticshock, vaultah
Date 2019-05-06.20:57:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557176264.7.0.0208604603547.issue27639@roundup.psfhosted.org>
In-reply-to
Content
Results from a quick unit test on the proposed changes were positive:

>>> from collections import UserList
>>> UserList([0,1,2,3,4,5])[0:2].__class__
<class 'collections.UserList'>

If you compare this result with the one a couple comments above, you can see that the result is no longer a list, but rather of type UserList.
History
Date User Action Args
2019-05-06 20:57:44mblahaysetrecipients: + mblahay, rhettinger, r.david.murray, serhiy.storchaka, vaultah, staticshock
2019-05-06 20:57:44mblahaysetmessageid: <1557176264.7.0.0208604603547.issue27639@roundup.psfhosted.org>
2019-05-06 20:57:44mblahaylinkissue27639 messages
2019-05-06 20:57:44mblahaycreate