File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -332,15 +332,15 @@ def _commands(self):
332332 # * 'maybe\\-boole\\-verify'
333333 # * 'time\\/\\/call'
334334 # * 'unknown\\?'
335+ # * 'SPLITS\\ IN\\ Q'
335336 #
336- # None of these are documented, and the minus sign / question
337+ # None of these are documented, and the backslash / question
337338 # mark / percent symbol probably aren't going to do what you
338- # think they're going to do if you try to type them in an
339- # ipython shell. We have to trim spaces too because some names
340- # show up with a random leading spaces: ' tminverse',
341- # ' toeplitz', etc.
339+ # think they're going to do if you type them in an ipython
340+ # shell. We have to trim spaces too because some names show up
341+ # with random leading spaces: ' tminverse', ' toeplitz', etc.
342342 #
343- bad_chars = ("- " , "/" , "?" , "%" )
343+ bad_chars = ("\\ " , "/" , "?" , "%" )
344344 return [c .strip ()
345345 for c in all_names
346346 if c
You can’t perform that action at this time.
0 commit comments