diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-04-08 10:44:50 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-04-08 10:44:50 -0400 |
commit | bc91330efb96fc66dc02f2b75f1dc6ad2f6523e3 (patch) | |
tree | ac3f0aef39f7abfcb0f141d8df3e6db2431fb996 /Doc | |
parent | Issue #21118: PyLong_AS_LONG() result type is long (diff) | |
parent | the name of the slot of nb_multiply not nb_mul (diff) | |
download | cpython-bc91330efb96fc66dc02f2b75f1dc6ad2f6523e3.tar.gz cpython-bc91330efb96fc66dc02f2b75f1dc6ad2f6523e3.tar.bz2 cpython-bc91330efb96fc66dc02f2b75f1dc6ad2f6523e3.zip |
merge 3.4
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/typeobj.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index efd85743a41..666de64fade 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -1199,7 +1199,8 @@ Sequence Object Structures This function is used by :c:func:`PySequence_Repeat` and has the same signature. It is also used by the ``*`` operator, after trying numeric - multiplication via the :c:member:`~PyTypeObject.tp_as_number.nb_mul` slot. + multiplication via the :c:member:`~PyTypeObject.tp_as_number.nb_multiply` + slot. .. c:member:: ssizeargfunc PySequenceMethods.sq_item |