Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9118a79

Browse files
committed
Issue #16015: Merge fix from 3.2.
2 parents 6447b92 + 9bb56a6 commit 9118a79

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Doc/tutorial/introduction.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ A value can be assigned to several variables simultaneously::
9494
Variables must be "defined" (assigned a value) before they can be used, or an
9595
error will occur::
9696

97-
>>> # try to access an undefined variable
98-
... n
97+
>>> n # try to access an undefined variable
9998
Traceback (most recent call last):
10099
File "<stdin>", line 1, in <module>
101100
NameError: name 'n' is not defined

0 commit comments

Comments
 (0)