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