##// END OF EJS Templates
Tweak empty cell test.
Thomas Kluyver -
Show More
@@ -2118,7 +2118,7 b' class InteractiveShell(Configurable, Magic):'
2118 2118 history. For user code calling back into IPython's machinery, this
2119 2119 should be set to False.
2120 2120 """
2121 if not raw_cell.strip():
2121 if (not raw_cell) or raw_cell.isspace():
2122 2122 return
2123 2123
2124 2124 for line in raw_cell.splitlines():
General Comments 0
You need to be logged in to leave comments. Login now