Commit 32687e07 authored by Stefan Behnel's avatar Stefan Behnel

Mark the "with_statement" __future__ feature as no-op since it's always on.

parent 18344579
......@@ -4,7 +4,7 @@ def _get_feature(name):
return getattr(__future__, name, object())
unicode_literals = _get_feature("unicode_literals")
with_statement = _get_feature("with_statement")
with_statement = _get_feature("with_statement") # dummy
division = _get_feature("division")
print_function = _get_feature("print_function")
absolute_import = _get_feature("absolute_import")
......
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