276 Commits (f432a3234f9f2ee09bd40be03e06bf72865ee375)

Author SHA1 Message Date
Stefan Krah f432a3234f bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157) 8 years ago
Segev Finer e7bc7aac3d bpo-9566: Fix a warning in Python/getargs.c (#2890) 9 years ago
Serhiy Storchaka 7e60192fe0 Remove _PyArg_NoStackKeywords(). (#2641) 9 years ago
Serhiy Storchaka f9f1ccace3 Fix regression in error message introduced in bpo-29951. (#2028) 9 years ago
Serhiy Storchaka 5eb788bf7f bpo-30534: Fixed error messages when pass keyword arguments (#1901) 9 years ago
Michael Seifert 64c8f705c0 bpo-29951: Include function name for some error messages in `PyArg_ParseTuple*` (#916) 9 years ago
Serhiy Storchaka 68a001dd59 Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and 9 years ago
Victor Stinner fdbc397f4d Issue #29286: Rename private PyArg_UnpackStack_impl() to unpack_stack() 9 years ago
Serhiy Storchaka 1741441649 Issue #29029: Speed up processing positional arguments in 9 years ago
Victor Stinner fe54dd8a08 Add _PyArg_UnpackStack() function helper 9 years ago
Victor Stinner 29d39cc8f5 Add _PyArg_NoStackKeywords() helper function 9 years ago
Victor Stinner 6518a93cb1 Add _PyArg_ParseStack() helper function 9 years ago
Victor Stinner 3e1fad6913 Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords 9 years ago
Victor Stinner c0083fc47d Rename keywords to kwargs in getargs.c 9 years ago
Victor Stinner 80ab22fa2c Cleanup getargs.c 9 years ago
Serhiy Storchaka 5ab81d787f Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. 9 years ago
Serhiy Storchaka 460bd0d284 Issue #19569: Compiler warnings are now emitted if use most of deprecated 9 years ago
Serhiy Storchaka 85b0f5beb1 Added the const qualifier to char* variables that refer to readonly internal 9 years ago
Serhiy Storchaka f4934ea77d Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. 9 years ago
Christian Heimes 2f2fee19ec va_end() all va_copy()ed va_lists. 9 years ago
Benjamin Peterson 0c21214f3e replace usage of Py_VA_COPY with the (C99) standard va_copy 9 years ago
Benjamin Peterson 4eef505064 Backed out changeset 3934e070c9db 9 years ago
Victor Stinner c7454ff5fc Issue #27810: Fix getargs.c compilation on Windows 9 years ago
Benjamin Peterson 819a46f33a fix export of size_t parse stack function 9 years ago
Victor Stinner f0ccbbbc57 Emit METH_FASTCALL code in Argument Clinic 9 years ago
Victor Stinner a9efb2f56e Add METH_FASTCALL calling convention 9 years ago
Benjamin Peterson af580dff4a replace PY_LONG_LONG with long long 9 years ago
Benjamin Peterson ed4aa83ff7 require a long long data type (closes #27961) 9 years ago
Serhiy Storchaka 9171a8b4ce Issue #27574: Decreased an overhead of parsing keyword arguments in functions 10 years ago
Serhiy Storchaka f41b82fb19 Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now support 10 years ago
Serhiy Storchaka 21a663ea28 Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject(). 10 years ago
Raymond Hettinger 942302371c Minor code cleanup for PyArg_UnpackTuple. 10 years ago
Serhiy Storchaka a9725f86a9 Issue #26312: SystemError is now raised in all programming bugs with using 10 years ago
Serhiy Storchaka 4cd63ef67a Issue #26198: ValueError is now raised instead of TypeError on buffer 10 years ago
Serhiy Storchaka c4b813d05d Issue #26198: Fixed error messages for some argument parsing errors. 10 years ago
Serhiy Storchaka ef1585eb9a Issue #25923: Added more const qualifiers to signatures of static and private functions. 10 years ago
Serhiy Storchaka d6e53dab86 Fixed error message for the "u#" format code. 11 years ago
Serhiy Storchaka b757c83ec6 Issue #22581: Use more "bytes-like object" throughout the docs and comments. 11 years ago
R David Murray 861470c836 #16518: Bring error messages in harmony with docs ("bytes-like object") 11 years ago
Serhiy Storchaka d8a1447c99 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes 11 years ago
Victor Stinner 98ea54c35c Issue #22156: Fix "comparison between signed and unsigned integers" compiler 12 years ago
Benjamin Peterson 40be9e5100 remove dynamic initializer lists for c89 compliance (closes #20595) 12 years ago
Larry Hastings b7ccb20423 Issue #20294: Argument Clinic now supports argument parsing for __new__ and 12 years ago
Victor Stinner cb29ec5f74 PY_FORMAT_SIZE_T should not be used with PyErr_Format(), PyErr_Format("%zd") is 12 years ago
Victor Stinner 74387f5cac Use Py_ssize_t type for sizes in getargs.c 12 years ago
Victor Stinner 79ed4c744a remove an outdated comment 12 years ago
Georg Brandl 142ad666dc Re #18521: move array bounds check before array access. 12 years ago
Victor Stinner 9550ef30e3 Issue #9566: Fix compilater warnings on Windows 64-bit 13 years ago
Richard Oudkerk 25296ce5de Use PY_FORMAT_SIZE_T because Visual Studio does not understand %zd format. 13 years ago
Victor Stinner 84bb1cf994 Fix compilater warnings on Windows 64-bit 13 years ago