mirror of https://github.com/python/cpython.git
[3.11] Use SyntaxError invalid range in tutorial introduction example (GH-93031) (GH-97666)
Use SyntaxError invalid range in tutorial introduction example (GH-93031) Use output from a 3.10+ REPL, showing invalid range, for the SyntaxError examples in the tutorial introduction page. Co-authored-by: Eddie Hebert <eddie@eddiehebert.com>
This commit is contained in:
parent
c12c993aa1
commit
815ad02586
|
@ -234,12 +234,12 @@ This only works with two literals though, not with variables or expressions::
|
|||
>>> prefix 'thon' # can't concatenate a variable and a string literal
|
||||
File "<stdin>", line 1
|
||||
prefix 'thon'
|
||||
^
|
||||
^^^^^^
|
||||
SyntaxError: invalid syntax
|
||||
>>> ('un' * 3) 'ium'
|
||||
File "<stdin>", line 1
|
||||
('un' * 3) 'ium'
|
||||
^
|
||||
^^^^^
|
||||
SyntaxError: invalid syntax
|
||||
|
||||
If you want to concatenate variables or a variable and a literal, use ``+``::
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Update tutorial introduction output to use 3.10+ SyntaxError invalid range.
|
Loading…
Reference in New Issue