mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
gh-48496: Added example and link to faq for UnboundLocalError in reference (#93068)
This commit is contained in:
parent
ad23da0e77
commit
f3db68e6e6
2 changed files with 4 additions and 0 deletions
|
@ -128,6 +128,8 @@ lead to errors when a name is used within a block before it is bound. This rule
|
|||
is subtle. Python lacks declarations and allows name binding operations to
|
||||
occur anywhere within a code block. The local variables of a code block can be
|
||||
determined by scanning the entire text of the block for name binding operations.
|
||||
See :ref:`the FAQ entry on UnboundLocalError <faq-unboundlocalerror>`
|
||||
for examples.
|
||||
|
||||
If the :keyword:`global` statement occurs within a block, all uses of the names
|
||||
specified in the statement refer to the bindings of those names in the top-level
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue