diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-09-11 21:17:13 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-09-11 21:17:13 (GMT) |
commit | be74a378eb1676bdef826034aff96feb74141e23 (patch) | |
tree | 81b236b715b7be03cf9b21b37f87dfe9de704b4e | |
parent | 1f316975ac23378c805d5816a15250e3134a1e1e (diff) | |
download | cpython-be74a378eb1676bdef826034aff96feb74141e23.zip cpython-be74a378eb1676bdef826034aff96feb74141e23.tar.gz cpython-be74a378eb1676bdef826034aff96feb74141e23.tar.bz2 |
#6888 fix the alias command with no arguments
-rwxr-xr-x | Lib/pdb.py | 3 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -841,8 +841,7 @@ class Pdb(bdb.Bdb, cmd.Cmd): def do_alias(self, arg): args = arg.split() if len(args) == 0: - keys = self.aliases.keys() - keys.sort() + keys = sorted(self.aliases.keys()) for alias in keys: print("%s = %s" % (alias, self.aliases[alias]), file=self.stdout) return @@ -70,6 +70,8 @@ C-API Library ------- +- Issue #6888: pdb's alias command was broken when no arguments were given. + - Issue #6857: Default format() alignment should be '>' for Decimal instances. |