New submission from Steven Reed: Example repro:
Python 3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> x=map(bool,[1,0,0,1,1,0]) >>> x <map object at 0x0000000000AC51D0> >>> list(x) [True, False, False, True, True, False] >>> list(x) [] >>> x <map object at 0x0000000000AC51D0> ---------- components: Library (Lib) messages: 263111 nosy: Steven Reed priority: normal severity: normal status: open title: list() destroys map object data type: behavior versions: Python 3.5 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue26725> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com