Skip to content

Commit

Permalink
gh-48496: Added example and link to faq for UnboundLocalError in refe…
Browse files Browse the repository at this point in the history
…rence (GH-93068)

(cherry picked from commit f3db68e)

Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
  • Loading branch information
miss-islington and slateny committed Dec 22, 2022
1 parent de74d49 commit 86cdfaa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Doc/faq/programming.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ Yes. The coding style required for standard library modules is documented as
Core Language
=============

.. _faq-unboundlocalerror:

Why am I getting an UnboundLocalError when the variable has a value?
--------------------------------------------------------------------

Expand Down
2 changes: 2 additions & 0 deletions Doc/reference/executionmodel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 86cdfaa

Please sign in to comment.