diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-07-10 08:25:34 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-07-10 08:25:34 (GMT) |
commit | 7e60192fe0dfd763b0d458cf0898ba4f7ac7d81a (patch) | |
tree | 791a6f43990e506a613becf34642cba64aa92ae6 /Include | |
parent | bb2bae84d6b29f991b757b46430c3c15c60059e9 (diff) | |
download | cpython-7e60192fe0dfd763b0d458cf0898ba4f7ac7d81a.zip cpython-7e60192fe0dfd763b0d458cf0898ba4f7ac7d81a.tar.gz cpython-7e60192fe0dfd763b0d458cf0898ba4f7ac7d81a.tar.bz2 |
Remove _PyArg_NoStackKeywords(). (#2641)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/modsupport.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h index 853860f..8c7cf39 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -60,12 +60,9 @@ PyAPI_FUNC(int) _PyArg_UnpackStack( ...); PyAPI_FUNC(int) _PyArg_NoKeywords(const char *funcname, PyObject *kwargs); -PyAPI_FUNC(int) _PyArg_NoStackKeywords(const char *funcname, PyObject *kwnames); PyAPI_FUNC(int) _PyArg_NoPositional(const char *funcname, PyObject *args); #define _PyArg_NoKeywords(funcname, kwargs) \ ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs))) -#define _PyArg_NoStackKeywords(funcname, kwnames) \ - ((kwnames) == NULL || _PyArg_NoStackKeywords((funcname), (kwnames))) #define _PyArg_NoPositional(funcname, args) \ ((args) == NULL || _PyArg_NoPositional((funcname), (args))) |