This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: pdb alias command with no arguments is broken
Type: Stage:
Components: Library (Lib) Versions: Python 3.0, Python 3.1, Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: MLModel, benjamin.peterson
Priority: normal Keywords:

Created on 2009-09-11 20:21 by MLModel, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg92522 - (view) Author: Mitchell Model (MLModel) Date: 2009-09-11 20:21
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.
msg92527 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-09-11 21:17
Fixed in r74741.
History
Date User Action Args
2022-04-11 14:56:52adminsetgithub: 51137
2009-09-11 21:17:24benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg92527

resolution: fixed
2009-09-11 20:21:13MLModelcreate