[issue3417] make the fix_dict fixer explicit

2008-07-19 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Rather, the list of special contexts in which it is ok to not use list() should be extended. -- nosy: +georg.brandl ___ Python tracker <[EMAIL PROTECTED]> _

[issue3417] make the fix_dict fixer explicit

2008-07-19 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: Can we make the part of fix_dict that converts d.items/values/keys to list(d.items) explicit? Most of the time, it's fine if the method returns a view and can be a bit of a performance hit to convert it to a list. -- assignee: co