added __future__.nested_scopes as an importable dummy
authorStefan Behnel <scoder@users.berlios.de>
Thu, 25 Nov 2010 22:44:14 +0000 (23:44 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 25 Nov 2010 22:44:14 +0000 (23:44 +0100)
Cython/Compiler/Future.py

index ef2c61f6f74dfaa197ecd8d9ce764cec69e2efcd..9955a81382622945186171ab6aa56bde6a637138 100644 (file)
@@ -10,5 +10,6 @@ unicode_literals = _get_feature("unicode_literals")
 with_statement = _get_feature("with_statement")
 division = _get_feature("division")
 print_function = _get_feature("print_function")
+nested_scopes = _get_feature("nested_scopes")  # dummy
 
 del _get_feature