summaryrefslogtreecommitdiff
path: root/Lib/test/test_capi.py
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (G...Victor Stinner2019-04-111-4/+27
* bpo-29564:_PyMem_DumpTraceback() suggests enabling tracemalloc (GH-10510) (GH...Victor Stinner2018-11-131-0/+4
* bpo-34272: Move argument parsing tests from test_capi to test_getargs2. (GH-8...Miss Islington (bot)2018-08-061-180/+3
* bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192)Miss Islington (bot)2018-07-111-0/+32
* bpo-32030: Rework memory allocators (#4625)Victor Stinner2017-11-291-2/+1
* bpo-32136: Separate embedding tests from C API tests (GH-4567)Nick Coghlan2017-11-281-186/+1
* bpo-32096: Remove obj and mem from _PyRuntime (#4532)Victor Stinner2017-11-241-0/+10
* test_capi.test__testcapi() becomes more verbose (#4197)Victor Stinner2017-10-311-4/+9
* bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() al...Oren Milman2017-10-081-1/+45
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-8/+2
* bpo-30695: Add set_nomemory(start, stop) to _testcapi (GH-2406)xdegaye2017-07-011-1/+33
* bpo-28180: Fix test_capi.test_forced_io_encoding() (#2155)Victor Stinner2017-06-131-1/+1
* bpo-28180: Implementation for PEP 538 (#659)Nick Coghlan2017-06-111-19/+16
* bpo-30447: Fix/skip the subinterpreters test on some platforms. (#1791)Eric Snow2017-05-241-43/+42
* bpo-29102: Add a unique ID to PyInterpreterState. (#1639)Eric Snow2017-05-221-5/+86
* bpo-30184: Add tests for invalid use of PyArg_ParseTupleAndKeywords. (#1316)Serhiy Storchaka2017-05-041-18/+41
* bpo-30065: Fixed arguments validation in _posixsubprocess.fork_exec(). (#1110)Serhiy Storchaka2017-04-191-3/+3
* bpo-29951: Include function name for some error messages in `PyArg_ParseTuple...Michael Seifert2017-04-091-4/+4
* Issue #24932: Use proper command line parsing in _testembedSteve Dower2017-01-011-1/+1
* Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raisingSerhiy Storchaka2016-10-211-2/+2
* Issue #28484: Skip tests if GIL is not used or multithreading is disabledMartin Panter2016-10-201-0/+1
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-5/+5
* Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now supportSerhiy Storchaka2016-06-091-0/+25
* Issue #27076: Merge spelling from 3.5Martin Panter2016-05-261-1/+1
|\
| * Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
* | Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-0/+3
|\ \ | |/
| * Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-0/+3
* | Fail if PyMem_Malloc() is called without holding the GILVictor Stinner2016-03-161-4/+13
* | Issue #26564: Fix test_capiVictor Stinner2016-03-151-0/+2
* | Check the GIL in PyObject_Malloc()Victor Stinner2016-03-141-9/+21
* | Issue #26516: Fix test_capi on AIXVictor Stinner2016-03-141-1/+1
* | Issue #26516: Fix test_capi on 32-bit systemVictor Stinner2016-03-141-11/+9
* | Issue #26516: Fix test_capi on WindowsVictor Stinner2016-03-141-4/+8
* | Add PYTHONMALLOC env varVictor Stinner2016-03-141-0/+59
* | Issue #26312: SystemError is now raised in all programming bugs with usingSerhiy Storchaka2016-02-111-2/+2
* | Issue #26198: ValueError is now raised instead of TypeError on bufferSerhiy Storchaka2016-02-081-2/+2
|/
* Issue #26198: Fixed error messages for some argument parsing errors.Serhiy Storchaka2016-02-081-1/+1
* Issue #25800: Merge with 3.4Zachary Ware2015-12-051-1/+2
|\
| * Issue #25800: Fix running test_capi directlyZachary Ware2015-12-051-1/+2
* | Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-061-1/+1
* | Issue #20586: Argument Clinic now ensures signatures on functions without doc...Zachary Ware2015-04-131-1/+5
* | Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-011-9/+5
|\ \ | |/
| * Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-011-9/+5
* | Issue #23571: Enhance _Py_CheckFunctionResult()Victor Stinner2015-03-241-4/+4
* | Issue #23571: Update test_capiVictor Stinner2015-03-241-2/+23
* | Issue #23571: Fix test_capiVictor Stinner2015-03-211-2/+2
* | Issue #23571: _Py_CheckFunctionResult() now gives the name of the functionVictor Stinner2015-03-211-0/+44
* | #22731 test_capi test fails because of mismatched newlinesSteve Dower2014-11-011-3/+4
* | Issue #18093: fix test_capi test skip due to _testembed moveNick Coghlan2014-09-251-1/+1
* | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-091-0/+17