summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/future.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/compiler/future.py')
-rw-r--r--Lib/compiler/future.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/compiler/future.py b/Lib/compiler/future.py
index 09ffe4a..868b7cbb 100644
--- a/Lib/compiler/future.py
+++ b/Lib/compiler/future.py
@@ -16,7 +16,7 @@ def is_future(stmt):
class FutureParser:
features = ("nested_scopes", "generators", "division")
-
+
def __init__(self):
self.found = {} # set
@@ -70,4 +70,3 @@ if __name__ == "__main__":
walk(tree, v)
print v.found
print
-