diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-02-26 21:32:16 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-02-26 21:32:16 (GMT) |
commit | c6696d272ffbac7d672a208b9fbbe52713f586cd (patch) | |
tree | ac702586577d9a048ca663e4666df33cf2b1ed13 /Doc/reference/executionmodel.rst | |
parent | 2de51ff4e145fc1b04db06f64de54bbbbcbaa941 (diff) | |
download | cpython-c6696d272ffbac7d672a208b9fbbe52713f586cd.zip cpython-c6696d272ffbac7d672a208b9fbbe52713f586cd.tar.gz cpython-c6696d272ffbac7d672a208b9fbbe52713f586cd.tar.bz2 |
this isn't true anymore
Diffstat (limited to 'Doc/reference/executionmodel.rst')
-rw-r--r-- | Doc/reference/executionmodel.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/reference/executionmodel.rst b/Doc/reference/executionmodel.rst index d11e741..82e37a2 100644 --- a/Doc/reference/executionmodel.rst +++ b/Doc/reference/executionmodel.rst @@ -94,9 +94,7 @@ module, except those beginning with an underscore. This form may only be used at the module level. A target occurring in a :keyword:`del` statement is also considered bound for -this purpose (though the actual semantics are to unbind the name). It is -illegal to unbind a name that is referenced by an enclosing scope; the compiler -will report a :exc:`SyntaxError`. +this purpose (though the actual semantics are to unbind the name). Each assignment or import statement occurs within a block defined by a class or function definition or at the module level (the top-level code block). |