##// END OF EJS Templates
Fixed a problem with evaluating indented lines in pure python code....
Ahmet Bakan -
Show More
@@ -496,6 +496,12 b' class EmbeddedSphinxShell(object):'
496 else: # still on a multiline
496 else: # still on a multiline
497 modified = u'%s %s' % (continuation, line)
497 modified = u'%s %s' % (continuation, line)
498 output.append(modified)
498 output.append(modified)
499
500 # if the next line is indented, it should be part of multiline
501 if len(content) > lineno + 1:
502 nextline = content[lineno + 1]
503 if len(nextline) - len(nextline.lstrip()) > 3:
504 continue
499 try:
505 try:
500 mod = ast.parse(
506 mod = ast.parse(
501 '\n'.join(content[multiline_start:lineno+1]))
507 '\n'.join(content[multiline_start:lineno+1]))
General Comments 0
You need to be logged in to leave comments. Login now