summaryrefslogtreecommitdiffstats
path: root/Lib/cmd.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-11-05 10:43:02 (GMT)
committerGuido van Rossum <guido@python.org>1992-11-05 10:43:02 (GMT)
commitc629d34c4f1797b690a6c93ea3e2a5b82698b686 (patch)
tree812dcbc9fd664f9a5354e3301d7aa2375d85517a /Lib/cmd.py
parent1115ab2a7469746859655cfa7f717c794a8a22ab (diff)
downloadcpython-c629d34c4f1797b690a6c93ea3e2a5b82698b686.zip
cpython-c629d34c4f1797b690a6c93ea3e2a5b82698b686.tar.gz
cpython-c629d34c4f1797b690a6c93ea3e2a5b82698b686.tar.bz2
* change default line numbers for 'list' in pdb.py
* changed eval() into getattr() in cmd.py * added dirname(), basename() and (dummy) normath() to macpath.py * renamed nntp.py to nntplib.py * Made string.index() compatible with strop.index() * Make string.atoi('') raise string.atoi_error rather than ValueError * Added dirname() and normpath() to posixpath.
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r--Lib/cmd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/cmd.py b/Lib/cmd.py
index e07019f..eedf613 100644
--- a/Lib/cmd.py
+++ b/Lib/cmd.py
@@ -37,7 +37,7 @@ class Cmd:
return self.default(line)
else:
try:
- func = eval('self.do_' + cmd)
+ func = getattr(self, 'do_' + cmd)
except AttributeError:
return self.default(line)
return func(arg)
@@ -49,7 +49,7 @@ class Cmd:
if arg:
# XXX check arg syntax
try:
- func = eval('self.help_' + arg)
+ func = getattr(self, 'help_' + arg)
except:
print '*** No help on', `arg`
return