* aifc.py: don't die on invalid MARK chunk
* calendar.py: remove stuff now built in time; some cleanup and generalization in the calendar printing * cmd.py: use __init__. * tzparse.py: This module is no longer necessary -- use builtin time instead!
This commit is contained in:
@@ -8,11 +8,13 @@ PROMPT = '(Cmd) '
|
||||
IDENTCHARS = string.letters + string.digits + '_'
|
||||
|
||||
class Cmd:
|
||||
|
||||
def init(self):
|
||||
|
||||
def __init__(self):
|
||||
self.prompt = PROMPT
|
||||
self.identchars = IDENTCHARS
|
||||
self.lastcmd = ''
|
||||
|
||||
def init(self):
|
||||
return self
|
||||
|
||||
def cmdloop(self):
|
||||
@@ -56,7 +58,7 @@ class Cmd:
|
||||
func()
|
||||
else:
|
||||
import newdir
|
||||
names = newdir.dir(self)
|
||||
names = newdir.dir(self.__class__)
|
||||
cmds = []
|
||||
for name in names:
|
||||
if name[:3] == 'do_':
|
||||
|
||||
Reference in New Issue
Block a user