M PyShell.py

M rpc.py

SF Bug 629987: Idle not printing prompts following SyntaxError
This commit is contained in:
Kurt B. Kaiser 2002-11-30 06:18:00 +00:00
parent a59ef7bbe0
commit 6e44cc2369
2 changed files with 20 additions and 17 deletions

View file

@ -90,7 +90,7 @@ objecttable = {}
class SocketIO:
debugging = 0
debugging = False
def __init__(self, sock, objtable=None, debugging=None):
self.mainthread = threading.currentThread()
@ -189,6 +189,7 @@ class SocketIO:
def asyncreturn(self, seq):
response = self.getresponse(seq)
self.debug("asyncreturn:", response)
return self.decoderesponse(response)
def decoderesponse(self, response):