Commit ed3fbb05 authored by Stefan Behnel's avatar Stefan Behnel

support 'from __future__ import generators'

parent c62148d0
...@@ -3,7 +3,7 @@ def _get_feature(name): ...@@ -3,7 +3,7 @@ def _get_feature(name):
try: try:
return getattr(__future__, name) return getattr(__future__, name)
except AttributeError: except AttributeError:
# unique fake object for earlier Python versions # unique fake object for earlier Python versions or Python 3
return object() return object()
unicode_literals = _get_feature("unicode_literals") unicode_literals = _get_feature("unicode_literals")
...@@ -11,5 +11,6 @@ with_statement = _get_feature("with_statement") ...@@ -11,5 +11,6 @@ with_statement = _get_feature("with_statement")
division = _get_feature("division") division = _get_feature("division")
print_function = _get_feature("print_function") print_function = _get_feature("print_function")
nested_scopes = _get_feature("nested_scopes") # dummy nested_scopes = _get_feature("nested_scopes") # dummy
generators = _get_feature("generators") # dummy
del _get_feature del _get_feature
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment