summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_call.py
Commit message (Expand)AuthorAgeFilesLines
* gh-108494: Argument Clinic: fix support of Limited C API (GH-108536)Serhiy Storchaka2023-08-281-4/+7
* gh-107944: Improve error message for function calls with bad keyword argument...Pablo Galindo Salgado2023-08-171-0/+68
* GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra...Mark Shannon2023-08-041-1/+2
* gh-106023: Remove _PyObject_FastCall() function (#106265)Victor Stinner2023-06-301-15/+2
* gh-105107: Remove PyCFunction_Call() function (#105181)Victor Stinner2023-06-011-0/+20
* GH-103899: Provide a hint when accidentally calling a module (GH-103900)Brandt Bucher2023-05-041-0/+32
* gh-101261: add test for function with > 255 args (#101262)Irit Katriel2023-01-231-0/+10
* gh-60203: Always pass True/False as boolean arguments in tests (GH-99983)Serhiy Storchaka2022-12-041-1/+1
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-021-5/+5
* gh-98586: Add vector call APIs to the Limited API (GH-98587)Wenzel Jakob2022-10-271-1/+33
* gh-91058: Add error suggestions to 'import from' import errors (#98305)Pablo Galindo Salgado2022-10-251-2/+2
* GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...Mark Shannon2022-10-051-0/+38
* GH-91049: Introduce set vectorcall field API for PyFunctionObject (GH-92257)adphrost2022-09-151-0/+51
* gh-95991: Add some infrastructure for testing Limited API in _testcapi (GH-95...Petr Viktorin2022-08-171-4/+2
* Disable Limited API tests with Py_TRACE_REFS (GH-95796)Petr Viktorin2022-08-091-0/+4
* gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)Petr Viktorin2022-08-081-0/+5
* gh-93274: Make vectorcall safe on mutable classes & inherit it by default (#9...Petr Viktorin2022-08-041-1/+63
* gh-94938: Fix test (GH-95396)Serhiy Storchaka2022-07-301-5/+0
* gh-94938: Fix errror detection of unexpected keyword arguments (GH-94999)Serhiy Storchaka2022-07-281-0/+25
* GH-93252: Fix error handling for failed Python calls (GH-94693)Brandt Bucher2022-07-091-0/+12
* bpo-45155 : Default arguments for int.to_bytes(length=1, byteorder=sys.byteor...Barry Warsaw2021-09-161-1/+1
* bpo-20201: variadic arguments support for AC (GH-18609)Batuhan Taskaya2021-07-161-1/+1
* bpo-43908: Immutable types inherit vectorcall (GH-27001)Erlend Egeberg Aasland2021-07-081-2/+2
* bpo-40679: Use the function's qualname in certain TypeErrors (GH-20236)Dennis Sweeney2020-05-221-0/+48
* bpo-40443: Remove unused imports in tests (GH-19804)Victor Stinner2020-04-301-1/+0
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-111-3/+3
* bpo-37645: add new function _PyObject_FunctionStr() (GH-14890)Jeroen Demeyer2019-11-051-5/+5
* bpo-37499: Test various C calling conventions (GH-15776)Petr Viktorin2019-09-101-164/+221
* bpo-36974: separate vectorcall functions for each calling convention (GH-13781)Jeroen Demeyer2019-07-051-0/+2
* bpo-36974: inherit tp_vectorcall_offset unconditionally (GH-13858)Jeroen Demeyer2019-06-241-0/+9
* bpo-37191: Move TestPEP590 from test_capi to test_call (GH-13892)Victor Stinner2019-06-071-0/+123
* bpo-36974: implement PEP 590 (GH-13185)Jeroen Demeyer2019-05-291-8/+8
* bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381)Jeroen Demeyer2019-05-221-0/+17
* bpo-36282: Improved error message for too much positional arguments. (GH-12310)Serhiy Storchaka2019-03-131-1/+1
* bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438)Xtreak2018-12-211-4/+7
* bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624)INADA Naoki2018-09-261-0/+17
* bpo-34127: Fix grammar in error message with respect to argument count (GH-8395)Xtreak2018-07-221-0/+16
* bpo-31229: Fixed wrong error messages when too many keyword arguments are rec...Oren Milman2017-08-231-0/+21
* bpo-30878: Fix error message when keyword arguments are passed (#2635)Sylvain2017-07-091-0/+8
* bpo-20627: Fix error message when keyword arguments are used (#2115)Sylvain2017-06-151-0/+26
* bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051)Sylvain2017-06-101-0/+12
* Fix regression in error message introduced in bpo-29951. (#2028)Serhiy Storchaka2017-06-091-0/+4
* bpo-30524: Write unit tests for FASTCALL (#2022)Victor Stinner2017-06-091-0/+175
* bpo-30534: Fixed error messages when pass keyword arguments (#1901)Serhiy Storchaka2017-06-061-3/+57
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-6/+1
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-9/+9
* SF #904720: dict.update should take a 2-tuple sequence like dict.__init_Raymond Hettinger2004-03-041-9/+9
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-2/+2
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1