##// END OF EJS Templates
Make multiline history default be platform dep (false on Win32).
Fernando Perez -
Show More
@@ -307,7 +307,7 b' class InteractiveShell(SingletonConfigurable, Magic):'
307 307 Automatically call the pdb debugger after every exception.
308 308 """
309 309 )
310 multiline_history = CBool(True, config=True,
310 multiline_history = CBool(sys.platform != 'win32', config=True,
311 311 help="Store multiple line spanning cells as a single entry in history."
312 312 )
313 313
General Comments 0
You need to be logged in to leave comments. Login now