#6888 fix the alias command with no arguments

This commit is contained in:
Benjamin Peterson 2009-09-11 21:17:13 +00:00
parent 1f316975ac
commit be74a378eb
2 changed files with 3 additions and 2 deletions

View File

@ -841,8 +841,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
def do_alias(self, arg): def do_alias(self, arg):
args = arg.split() args = arg.split()
if len(args) == 0: if len(args) == 0:
keys = self.aliases.keys() keys = sorted(self.aliases.keys())
keys.sort()
for alias in keys: for alias in keys:
print("%s = %s" % (alias, self.aliases[alias]), file=self.stdout) print("%s = %s" % (alias, self.aliases[alias]), file=self.stdout)
return return

View File

@ -70,6 +70,8 @@ C-API
Library Library
------- -------
- Issue #6888: pdb's alias command was broken when no arguments were given.
- Issue #6857: Default format() alignment should be '>' for Decimal - Issue #6857: Default format() alignment should be '>' for Decimal
instances. instances.