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

Skip to content

Commit 0269ce8

Browse files
authored
bpo-41933: Clarify wording for s * n in Common Sequence Operations (GH-22570)
1 parent 0ab152c commit 0269ce8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Lib/pydoc_data/topics.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13956,9 +13956,9 @@
1395613956
'| "s + t" | the concatenation of *s* and *t* '
1395713957
'| (6)(7) |\n'
1395813958
'+----------------------------+----------------------------------+------------+\n'
13959-
'| "s * n" or "n * s" | equivalent to adding *s* to '
13959+
'| "s * n" or "n * s" | equivalent to *n* copies of the '
1396013960
'| (2)(7) |\n'
13961-
'| | itself *n* times '
13961+
'| | *s* sequence '
1396213962
'| |\n'
1396313963
'+----------------------------+----------------------------------+------------+\n'
1396413964
'| "s[i]" | *i*th item of *s*, origin 0 '
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Clarified wording of s * n in the Common Sequence Operations

0 commit comments

Comments
 (0)