[issue6888] pdb alias command with no arguments is broken

2009-09-11 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r74741. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue6888] pdb alias command with no arguments is broken

2009-09-11 Thread Mitchell Model
New submission from Mitchell Model : Typing just alias in pdb doesn't work. Because dict.keys() now returns a dict_keys object instead of a list the line keys.sort() in Pdb.do_alias breaks because dict_keys doesn't have a sort method. -- components: Library (Lib) messages: 92522