Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions publish/structuring-python.txt
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ in f().
>>> print x
1

In this third example, g() overrides x, and h() obtains x from within g(),
because h() was *defined* within g():
In this third example, outer() overrides x, and inner() obtains x from within outer(),
because inner() was *defined* within outer():

>>> x = 1

Expand Down