[issue11020] Pyclbr broken because of missing 2-to-3 conversion

2011-01-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: At some point, we ought to clean-up bad variable names. For now (close to the release), I'll stick with the minimal fix. Fixed r88207 and r88028. -- resolution: -> fixed status: open -> closed versions: +Python 3.1 __

[issue11020] Pyclbr broken because of missing 2-to-3 conversion

2011-01-26 Thread R. David Murray
R. David Murray added the comment: One fix or the other ought to go in, IMO. -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue11020] Pyclbr broken because of missing 2-to-3 conversion

2011-01-26 Thread R. David Murray
R. David Murray added the comment: As long as we are modifying that code, how about fixing the use of 'dict' as a variable name? Alternative patch attached. -- nosy: +r.david.murray Added file: http://bugs.python.org/file20544/pyclbr2.patch ___ Pyt

[issue11020] Pyclbr broken because of missing 2-to-3 conversion

2011-01-26 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- keywords: +patch Added file: http://bugs.python.org/file20542/pyclbr.patch ___ Python tracker ___ __

[issue11020] Pyclbr broken because of missing 2-to-3 conversion

2011-01-26 Thread Raymond Hettinger
New submission from Raymond Hettinger : The command line invocation of pyclbr failed because of a 2-to-3 error. The dict.values() call returns a dictview which doesn't support the sort() method. Invoke with: $ python -m pyclbr Lib/collections.py -- components: Library (Lib) messages