Show More
@@ -66,7 +66,7 b' def attr_matches(self, text):' | |||
|
66 | 66 | return res |
|
67 | 67 | |
|
68 | 68 | def main(): |
|
69 | import readline | |
|
69 | import IPython.rlineimpl as readline | |
|
70 | 70 | readline.set_completer_delims(" \n\t") |
|
71 | 71 | # monkeypatch - the code will be folded to normal completer later on |
|
72 | 72 | import IPython.completer |
@@ -2209,7 +2209,7 b' class InteractiveShell(object,Magic):' | |||
|
2209 | 2209 | |
|
2210 | 2210 | try: |
|
2211 | 2211 | code = self.compile(source,filename,symbol) |
|
2212 | except (OverflowError, SyntaxError, ValueError, TypeError): | |
|
2212 | except (OverflowError, SyntaxError, ValueError, TypeError, MemoryError): | |
|
2213 | 2213 | # Case 1 |
|
2214 | 2214 | self.showsyntaxerror(filename) |
|
2215 | 2215 | return None |
General Comments 0
You need to be logged in to leave comments.
Login now