##// END OF EJS Templates
Merge with trunk
Gael Varoquaux -
r2000:f47baf40 merge
parent child Browse files
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
@@ -14,6 +14,7 b' for your operation system, from platutils_PLATFORMNAME module.'
14 14
15 15 import os
16 16 import sys
17 import warnings
17 18
18 19 # Import the platform-specific implementations
19 20 if os.name == 'posix':
@@ -25,6 +25,7 b" if __name__ == '__main__':"
25 25 r'\.cocoa',
26 26 r'\.ipdoctest',
27 27 r'\.Gnuplot',
28 r'\.frontend.process.winprocess',
28 29 ]
29 30 docwriter.write_api_docs(outdir)
30 31 docwriter.write_index(outdir, 'gen',
General Comments 0
You need to be logged in to leave comments. Login now