Commit 1f84ed0d authored by Fred Drake's avatar Fred Drake

fix typo and join two paragraphs

parent b167b04a
...@@ -80,8 +80,7 @@ If a name binding operation occurs anywhere within a code block, all ...@@ -80,8 +80,7 @@ If a name binding operation occurs anywhere within a code block, all
uses of the name within the block are treated as references to the uses of the name within the block are treated as references to the
current block. This can lead to errors when a name is used within a current block. This can lead to errors when a name is used within a
block before it is bound. block before it is bound.
This rule is subtle. Python lacks declarations and allows
The previous rule is a subtle. Python lacks declarations and allows
name binding operations to occur anywhere within a code block. The name binding operations to occur anywhere within a code block. The
local variables of a code block can be determined by scanning the local variables of a code block can be determined by scanning the
entire text of the block for name binding operations. entire text of the block for name binding operations.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment