You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.. ipython:: python
for i in range(5):
print 'foo'
print 'bar'
The block parser is not "greedy" enough, it uses ast.parse to determine if lines read are valid Python code which they are after the first print statement. Can probably come up with a reasonable enough algorithm that looks at the indentation level to determine whether the block is done or not
No description provided.
The text was updated successfully, but these errors were encountered: