diff options
| author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-09-24 19:31:09 -0700 |
|---|---|---|
| committer | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-09-24 19:31:09 -0700 |
| commit | 9118a79c7c410d71725cd52cde310c8e224ac8f0 (patch) | |
| tree | 391878adec18ad7bbc7d7bfb8559cc192d2cd37a /Doc/tutorial | |
| parent | 6447b9214a927eca0b24ef2918d021d27635b3d0 (diff) | |
| parent | 9bb56a66c548e84012de141e4665ea39701c1e5f (diff) | |
| download | cpython-git-9118a79c7c410d71725cd52cde310c8e224ac8f0.tar.gz | |
Issue #16015: Merge fix from 3.2.
Diffstat (limited to 'Doc/tutorial')
| -rw-r--r-- | Doc/tutorial/introduction.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 43ea7aa371..b6d94accfd 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -94,8 +94,7 @@ A value can be assigned to several variables simultaneously:: Variables must be "defined" (assigned a value) before they can be used, or an error will occur:: - >>> # try to access an undefined variable - ... n + >>> n # try to access an undefined variable Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'n' is not defined |
