diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-18 21:57:37 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-18 21:57:37 (GMT) |
commit | e0c446bb4ad67294f42d4cb53b4ff28413bd8dde (patch) | |
tree | b4f286b4e6f2259ec47569561c4c62762e78b3f2 /Lib/compiler/future.py | |
parent | 8a57f00081b6f83168007fc701447d7926acc6c4 (diff) | |
download | cpython-e0c446bb4ad67294f42d4cb53b4ff28413bd8dde.zip cpython-e0c446bb4ad67294f42d4cb53b4ff28413bd8dde.tar.gz cpython-e0c446bb4ad67294f42d4cb53b4ff28413bd8dde.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/compiler/future.py')
-rw-r--r-- | Lib/compiler/future.py | 3 |
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 - |