[issue27639] UserList.__getitem__ doesn't account for slices

2016-07-28 Thread Anton Backer
Changes by Anton Backer : Removed file: http://bugs.python.org/file43924/581663cb2d4d.diff ___ Python tracker <http://bugs.python.org/issue27639> ___ ___ Python-bug

[issue27639] UserList.__getitem__ doesn't account for slices

2016-07-28 Thread Anton Backer
Changes by Anton Backer : -- keywords: +patch Added file: http://bugs.python.org/file43924/581663cb2d4d.diff ___ Python tracker <http://bugs.python.org/issue27

[issue27639] UserList.__getitem__ doesn't account for slices

2016-07-27 Thread Anton Backer
Changes by Anton Backer : -- hgrepos: +351 ___ Python tracker <http://bugs.python.org/issue27639> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27639] UserList.__getitem__ doesn't account for slices

2016-07-27 Thread Anton Backer
New submission from Anton Backer: The docs for UserList say: > List operations which return a new sequence attempt to create an instance of > the actual implementation class. However, UserList([])[:] returns a list, not a UserList. -- components: Library (Lib) files: patch me