summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-06-16 19:13:53 (GMT)
committerGitHub <noreply@github.com>2021-06-16 19:13:53 (GMT)
commit686c6f303a6e9e54b50401be0ae3dc6aa2fcf05a (patch)
tree020471617357d520c26f159d00102cf52e11f350 /Doc/c-api
parentc7e95715ec2f2a16eace7aa35a1eb2f18e8d06ed (diff)
downloadcpython-686c6f303a6e9e54b50401be0ae3dc6aa2fcf05a.zip
cpython-686c6f303a6e9e54b50401be0ae3dc6aa2fcf05a.tar.gz
cpython-686c6f303a6e9e54b50401be0ae3dc6aa2fcf05a.tar.bz2
bpo-44426: Use of 'complex' as a C variable name confuses Sphinx; change it to 'num'. (GH-26744) (GH-26761)
(cherry picked from commit 7247f6f433846c6e37308a550e8e5eb6be379856)
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/complex.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/complex.rst b/Doc/c-api/complex.rst
index e2ea766..c258946 100644
--- a/Doc/c-api/complex.rst
+++ b/Doc/c-api/complex.rst
@@ -46,9 +46,9 @@ pointers. This is consistent throughout the API.
:c:type:`Py_complex` representation.
-.. c:function:: Py_complex _Py_c_neg(Py_complex complex)
+.. c:function:: Py_complex _Py_c_neg(Py_complex num)
- Return the negation of the complex number *complex*, using the C
+ Return the negation of the complex number *num*, using the C
:c:type:`Py_complex` representation.