#6888 fix the alias command with no arguments
This commit is contained in:
parent
1f316975ac
commit
be74a378eb
|
@ -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
|
||||||
|
|
|
@ -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.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue