]> granicus.if.org Git - python/commitdiff
Don't crash when nonlocal is used at module level (fixes SF#1705365)
authorNick Coghlan <ncoghlan@gmail.com>
Mon, 23 Apr 2007 10:14:27 +0000 (10:14 +0000)
committerNick Coghlan <ncoghlan@gmail.com>
Mon, 23 Apr 2007 10:14:27 +0000 (10:14 +0000)
Lib/test/test_syntax.py
Python/symtable.c

index b21f6cf92aa5e0037233703cc7cf43a0835c2eb6..b5a5c5d8f912d1bc3184714fc891edb69aa607aa 100644 (file)
@@ -388,6 +388,12 @@ Misuse of the nonlocal statement can lead to a few unique syntax errors.
      ...
    SyntaxError: no binding for nonlocal 'x' found
 
+From SF bug #1705365
+   >>> nonlocal x
+   Traceback (most recent call last):
+     ...
+   SyntaxError: nonlocal declaration not allowed at module level
+
 TODO(jhylton): Figure out how to test SyntaxWarning with doctest.
 
 ##   >>> def f(x):
index 68deb0a41e1f10e61afb6f4d8e37ae7657dc0f8d..ca7d502fc55bedeca11eac40de69f5fcdd9a5966 100644 (file)
@@ -337,8 +337,6 @@ PyST_GetScope(PySTEntryObject *ste, PyObject *name)
    block, the name is treated as global until it is assigned to; then it
    is treated as a local.
 
-   TODO(jhylton): Discuss nonlocal
-
    The symbol table requires two passes to determine the scope of each name.
    The first pass collects raw facts from the AST via the symtable_visit_*
    functions: the name is a parameter here, the name is used but not defined
@@ -348,15 +346,17 @@ PyST_GetScope(PySTEntryObject *ste, PyObject *name)
    When a function is entered during the second pass, the parent passes
    the set of all name bindings visible to its children.  These bindings 
    are used to determine if non-local variables are free or implicit globals.
-   After doing the local analysis, it analyzes each of its child blocks
-   using an updated set of name bindings.
+   Names which are explicitly declared nonlocal must exist in this set of
+   visible names - if they do not, a syntax error is raised. After doing
+   the local analysis, it analyzes each of its child blocks using an
+   updated set of name bindings.
 
    The children update the free variable set.  If a local variable is added to
    the free variable set by the child, the variable is marked as a cell.  The
    function object being defined must provide runtime storage for the variable
    that may outlive the function's frame.  Cell variables are removed from the
    free set before the analyze function returns to its parent.
-   
+
    During analysis, the names are:
       symbols: dict mapping from symbol names to flag values (including offset scope values)
       scopes: dict mapping from symbol names to scope values (no offset)
@@ -415,6 +415,11 @@ analyze_name(PySTEntryObject *ste, PyObject *scopes, PyObject *name, long flags,
                                     PyString_AS_STRING(name));
                        return 0;
                }
+               if (!bound) {
+                       PyErr_Format(PyExc_SyntaxError,
+                                    "nonlocal declaration not allowed at module level");
+                        return 0;
+               }
                 if (!PySet_Contains(bound, name)) {
                         PyErr_Format(PyExc_SyntaxError,
                                      "no binding for nonlocal '%s' found",