diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-25 11:32:35 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-25 11:32:35 (GMT) |
commit | 3ba3a3ee56c142e93d6bbe20ff6bf939212a30f0 (patch) | |
tree | 28facf56626869888a4ca3ff03b91c9006017bc3 /Python/codecs.c | |
parent | 914ab8420e069499ad8a2d9b3f1ad584bd26a813 (diff) | |
download | cpython-3ba3a3ee56c142e93d6bbe20ff6bf939212a30f0.zip cpython-3ba3a3ee56c142e93d6bbe20ff6bf939212a30f0.tar.gz cpython-3ba3a3ee56c142e93d6bbe20ff6bf939212a30f0.tar.bz2 |
Issue #15422: get rid of PyCFunction_New macro
Diffstat (limited to 'Python/codecs.c')
-rw-r--r-- | Python/codecs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/codecs.c b/Python/codecs.c index 37ae41b..8d9ce6f 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -1026,7 +1026,7 @@ static int _PyCodecRegistry_Init(void) if (interp->codec_error_registry) { for (i = 0; i < Py_ARRAY_LENGTH(methods); ++i) { - PyObject *func = PyCFunction_New(&methods[i].def, NULL); + PyObject *func = PyCFunction_NewEx(&methods[i].def, NULL, NULL); int res; if (!func) Py_FatalError("can't initialize codec error registry"); |