summaryrefslogtreecommitdiff
path: root/Modules/_testcapimodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-33012: Fix signatures of METH_NOARGS functions. (GH-10736) (GH-10748)Miss Islington (bot)2018-11-271-5/+5
* Don't export pending_threadfunc from _testcapi. (GH-8075)Miss Islington (bot)2018-07-031-1/+2
* [3.6] bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327). (#4...xdegaye2017-10-261-0/+63
* [3.6] bpo-30695: Add set_nomemory(start, stop) to _testcapi (GH-2406) (#4083)Miss Islington (bot)2017-10-231-0/+128
* [3.6] bpo-31786: Make functions in the select module blocking when timeout is...Pablo Galindo2017-10-181-1/+2
* [3.6] bpo-31243: Fixed PyArg_ParseTuple failure checks. (GH-3171) (#3233)Oren Milman2017-08-291-16/+30
* bpo-31173: Rewrite WSTOPSIG test of test_subprocess (#3055) (#3070)Victor Stinner2017-08-111-0/+21
* [3.6] bpo-30039: Don't run signal handlers while resuming a yield from stack ...Yury Selivanov2017-06-091-0/+24
* bpo-30524: Write unit tests for FASTCALL (#2022) (#2030)Victor Stinner2017-06-091-0/+101
* [3.6] bpo-30184: Add tests for invalid use of PyArg_ParseTupleAndKeywords. (G...Serhiy Storchaka2017-05-041-2/+2
* convert from long long to PyLong loselessly (#1106) (#1121)Benjamin Peterson2017-04-131-1/+1
* Fix a memory leak in split-table dictionariesVictor Stinner2016-12-151-0/+14
* Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
|\
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
* | Issue #28123: _PyDict_GetItem_KnownHash() now can raise an exception asSerhiy Storchaka2016-11-061-0/+21
* | Merge from 3.5.Serhiy Storchaka2016-10-081-0/+34
|\ \ | |/
| * Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters().Serhiy Storchaka2016-10-081-0/+34
* | Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4().Serhiy Storchaka2016-10-021-0/+31
|\ \ | |/
| * Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4().Serhiy Storchaka2016-10-021-0/+31
| * Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-1/+1
* | Add a new private version to the builtin dict typeVictor Stinner2016-09-081-0/+16
* | make sure expected values are interpreted as doublesBenjamin Peterson2016-09-071-1/+1
* | replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-8/+8
* | replace Python aliases for standard integer types with the standard integer t...Benjamin Peterson2016-09-061-8/+8
* | require standard int types to be defined (#17884)Benjamin Peterson2016-09-061-8/+0
* | replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-19/+19
* | Avoid calling functions with an empty string as format stringVictor Stinner2016-09-051-2/+2
* | require a long long data type (closes #27961)Benjamin Peterson2016-09-051-26/+2
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-301-1/+1
* | Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now supportSerhiy Storchaka2016-06-091-0/+18
* | Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-0/+95
|\ \ | |/
| * Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-0/+95
* | Issue #26995: Added tests for "f", "d", "D", "S", "Y", and "U" format codesSerhiy Storchaka2016-05-161-0/+63
|\ \ | |/
| * Issue #26995: Added tests for "f", "d", "D", "S", "Y", and "U" format codesSerhiy Storchaka2016-05-161-0/+63
| * Backported tests for issue #18531.Serhiy Storchaka2016-05-161-0/+22
* | Issue #18531: Single var-keyword argument of dict subtype was passedSerhiy Storchaka2016-05-081-0/+22
* | Issue #26588: remove debug traces from _tracemalloc.Victor Stinner2016-03-221-14/+0
* | Issue #26588: add debug tracesVictor Stinner2016-03-221-0/+14
* | Add C functions _PyTraceMalloc_Track()Victor Stinner2016-03-221-0/+75
* | Fail if PyMem_Malloc() is called without holding the GILVictor Stinner2016-03-161-0/+19
* | Check the GIL in PyObject_Malloc()Victor Stinner2016-03-141-0/+15
* | Add PYTHONMALLOC env varVictor Stinner2016-03-141-0/+29
* | Issue #26198: Added tests for "es", "et", "es#", "et#" and "C" format unitsSerhiy Storchaka2016-01-281-1/+93
|\ \ | |/
| * Issue #26198: Added tests for "es", "et", "es#", "et#" and "C" format unitsSerhiy Storchaka2016-01-281-1/+93
* | Fix indentation of continuation lines.Georg Brandl2016-01-181-2/+2
* | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-2/+2
* | Merge 3.5 (sys.setrecursionlimit)Victor Stinner2015-10-131-0/+10
|\ \ | |/
| * sys.setrecursionlimit() now raises RecursionErrorVictor Stinner2015-10-131-0/+10
* | Fix test_time on platform with 32-bit time_t typeVictor Stinner2015-09-101-0/+1
* | Issue #23517: fromtimestamp() and utcfromtimestamp() methods ofVictor Stinner2015-09-091-1/+1