]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
authorVictor Stinner <vstinner@python.org>
Mon, 11 Oct 2021 22:42:23 +0000 (00:42 +0200)
committerGitHub <noreply@github.com>
Mon, 11 Oct 2021 22:42:23 +0000 (00:42 +0200)
commitce3489cfdb9f0e050bdc45ce5d3902c2577ea683
tree2493f172e9eddadbd5ca53cb810ddd4971bbcef3
parentfb8f208a4ddb38eedee71f9ecd0f22058802dab1
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)

Fix typo in the private _PyObject_CallNoArg() function name: rename
it to _PyObject_CallNoArgs() to be consistent with the public
function PyObject_CallNoArgs().
37 files changed:
Include/cpython/abstract.h
Include/internal/pycore_call.h
Modules/_collectionsmodule.c
Modules/_ctypes/_ctypes.c
Modules/_ctypes/callbacks.c
Modules/_ctypes/cfield.c
Modules/_ctypes/stgdict.c
Modules/_functoolsmodule.c
Modules/_io/bufferedio.c
Modules/_lsprof.c
Modules/_sqlite/connection.c
Modules/_ssl.c
Modules/_testcapimodule.c
Modules/itertoolsmodule.c
Modules/main.c
Modules/mathmodule.c
Modules/posixmodule.c
Objects/abstract.c
Objects/bytesobject.c
Objects/call.c
Objects/complexobject.c
Objects/dictobject.c
Objects/enumobject.c
Objects/fileobject.c
Objects/genobject.c
Objects/iterobject.c
Objects/moduleobject.c
Objects/object.c
Objects/odictobject.c
Objects/typeobject.c
Parser/tokenizer.c
Python/bltinmodule.c
Python/ceval.c
Python/codecs.c
Python/errors.c
Python/marshal.c
Python/sysmodule.c