##// END OF EJS Templates
BUG: ipython_directive now supports cython magic (remove dangling space) GH4791
y-p -
Show More
@@ -216,7 +216,11 b' def block_parser(part, rgxin, rgxout, fmtin, fmtout):'
216 if matchout or nextline.startswith('#'):
216 if matchout or nextline.startswith('#'):
217 break
217 break
218 elif nextline.startswith(continuation):
218 elif nextline.startswith(continuation):
219 inputline += '\n' + nextline[Nc:]
219 nextline = nextline[Nc:]
220 if nextline and nextline[0] == ' ':
221 nextline = nextline[1:]
222
223 inputline += '\n' + nextline
220 else:
224 else:
221 rest.append(nextline)
225 rest.append(nextline)
222 i+= 1
226 i+= 1
General Comments 0
You need to be logged in to leave comments. Login now