mirror of
https://github.com/python/cpython.git
synced 2024-11-24 02:15:30 +08:00
Patch #416220: Fix misplaced paren.
This commit is contained in:
parent
1d88c59f75
commit
22adac50cb
@ -613,7 +613,7 @@ if __name__ == '__main__':
|
||||
print args[1]
|
||||
return
|
||||
self.prompt = line + "% "
|
||||
elif len(self.prompt > 2):
|
||||
elif len(self.prompt) > 2:
|
||||
line = self.prompt[-2:]
|
||||
else:
|
||||
print "No statistics object is current -- cannot reload."
|
||||
|
@ -2,9 +2,7 @@
|
||||
should be based on this code. """
|
||||
|
||||
import handler
|
||||
|
||||
from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
|
||||
|
||||
from _exceptions import *
|
||||
|
||||
# ===== XMLREADER =====
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user