mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Correct "inplace" with "in-place" (GH-10480)
This commit is contained in:
parent
96be3400a9
commit
f4efa312d1
2 changed files with 5 additions and 5 deletions
|
|
@ -2052,7 +2052,7 @@ Sequence Object Structures
|
|||
signature. It should modify its first operand, and return it. This slot
|
||||
may be left to *NULL*, in this case :c:func:`!PySequence_InPlaceConcat`
|
||||
will fall back to :c:func:`PySequence_Concat`. It is also used by the
|
||||
augmented assignment ``+=``, after trying numeric inplace addition
|
||||
augmented assignment ``+=``, after trying numeric in-place addition
|
||||
via the :c:member:`~PyNumberMethods.nb_inplace_add` slot.
|
||||
|
||||
.. c:member:: ssizeargfunc PySequenceMethods.sq_inplace_repeat
|
||||
|
|
@ -2061,7 +2061,7 @@ Sequence Object Structures
|
|||
signature. It should modify its first operand, and return it. This slot
|
||||
may be left to *NULL*, in this case :c:func:`!PySequence_InPlaceRepeat`
|
||||
will fall back to :c:func:`PySequence_Repeat`. It is also used by the
|
||||
augmented assignment ``*=``, after trying numeric inplace multiplication
|
||||
augmented assignment ``*=``, after trying numeric in-place multiplication
|
||||
via the :c:member:`~PyNumberMethods.nb_inplace_multiply` slot.
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue