From 4029d8cbe7be159ed07de1de939f5cf5b0238e3b Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 25 Nov 2010 23:44:14 +0100 Subject: [PATCH] added __future__.nested_scopes as an importable dummy --- Cython/Compiler/Future.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cython/Compiler/Future.py b/Cython/Compiler/Future.py index ef2c61f6..9955a813 100644 --- a/Cython/Compiler/Future.py +++ b/Cython/Compiler/Future.py @@ -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 -- 2.26.2