From 5ffaa56486bb2db80af058e34d0475f1eb2df0a3 2011-10-18 07:08:38 From: Daniel Velkov <danielv@mylife.com> Date: 2011-10-18 07:08:38 Subject: [PATCH] added test for issue #678 --- diff --git a/IPython/core/tests/test_inputsplitter.py b/IPython/core/tests/test_inputsplitter.py index bf1d79c..c1ba2b7 100644 --- a/IPython/core/tests/test_inputsplitter.py +++ b/IPython/core/tests/test_inputsplitter.py @@ -534,6 +534,12 @@ syntax_ml = \ (' ....: ', ''), ], ], + + multiline_datastructure = + [ [('>>> a = [1,','a = [1,'), + ('... 2]','2]'), + ], + ], )