##// 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 return res
66 return res
67
67
68 def main():
68 def main():
69 import readline
69 import IPython.rlineimpl as readline
70 readline.set_completer_delims(" \n\t")
70 readline.set_completer_delims(" \n\t")
71 # monkeypatch - the code will be folded to normal completer later on
71 # monkeypatch - the code will be folded to normal completer later on
72 import IPython.completer
72 import IPython.completer
@@ -2209,7 +2209,7 b' class InteractiveShell(object,Magic):'
2209
2209
2210 try:
2210 try:
2211 code = self.compile(source,filename,symbol)
2211 code = self.compile(source,filename,symbol)
2212 except (OverflowError, SyntaxError, ValueError, TypeError):
2212 except (OverflowError, SyntaxError, ValueError, TypeError, MemoryError):
2213 # Case 1
2213 # Case 1
2214 self.showsyntaxerror(filename)
2214 self.showsyntaxerror(filename)
2215 return None
2215 return None
@@ -14,6 +14,7 b' for your operation system, from platutils_PLATFORMNAME module.'
14
14
15 import os
15 import os
16 import sys
16 import sys
17 import warnings
17
18
18 # Import the platform-specific implementations
19 # Import the platform-specific implementations
19 if os.name == 'posix':
20 if os.name == 'posix':
@@ -25,6 +25,7 b" if __name__ == '__main__':"
25 r'\.cocoa',
25 r'\.cocoa',
26 r'\.ipdoctest',
26 r'\.ipdoctest',
27 r'\.Gnuplot',
27 r'\.Gnuplot',
28 r'\.frontend.process.winprocess',
28 ]
29 ]
29 docwriter.write_api_docs(outdir)
30 docwriter.write_api_docs(outdir)
30 docwriter.write_index(outdir, 'gen',
31 docwriter.write_index(outdir, 'gen',
General Comments 0
You need to be logged in to leave comments. Login now