Commit be74a378 authored by Benjamin Peterson's avatar Benjamin Peterson

#6888 fix the alias command with no arguments

parent 1f316975
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment