Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OverCounting in Python Blocks #8

Open
caseycas opened this issue May 6, 2016 · 0 comments
Open

OverCounting in Python Blocks #8

caseycas opened this issue May 6, 2016 · 0 comments
Labels

Comments

@caseycas
Copy link
Owner

caseycas commented May 6, 2016

As of now, when there is a space after a block statement in python ends, such as:

+    if(example == True):
+        ....
+
+    print("More Code")

The space is counted toward the block, because we can't distinguish in one pass this case versus this one:

+    if(example == True):
+        ....
+
+        print("More Code")

I think this isn't easily fixable under our overall structure, so I'm going to leave this bug as a issue.
Perhaps when we could keep a count of empty lines passed and when closing the block role back the all the space lines?

@caseycas caseycas added the bug label May 6, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant