mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
pdb.py, bdb.py, cmd.py: use __init__() instead of init()
This commit is contained in:
parent
5cfa5dfe97
commit
5ef74b8f8e
3 changed files with 14 additions and 10 deletions
|
@ -14,7 +14,7 @@ class Cmd:
|
|||
self.identchars = IDENTCHARS
|
||||
self.lastcmd = ''
|
||||
|
||||
def init(self):
|
||||
def init(self): # BW compat only
|
||||
return self
|
||||
|
||||
def cmdloop(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue