summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_capi.py
Commit message (Expand)AuthorAgeFilesLines
* gh-90473: WASI: Mark tests that require os.pipe() (GH-92837)Christian Heimes2022-05-161-0/+2
* gh-82616: Add process_group support to subprocess.Popen (#23930)Gregory P. Smith2022-05-051-3/+3
* GH-92239: Make sure that PEP 523 is supported, even when specializing first. ...Mark Shannon2022-05-041-0/+28
* gh-91401: Add a failsafe way to disable vfork. (#91490)Gregory P. Smith2022-04-251-3/+3
* gh-89373: _Py_Dealloc() checks tp_dealloc exception (#32357)Victor Stinner2022-04-211-2/+12
* gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)Irit Katriel2022-04-151-0/+22
* Add new PyFrame_GetLasti C-API function (GH-32413)Mark Shannon2022-04-081-0/+1
* bpo-40280: Detect missing threading on WASM platforms (GH-32352)Christian Heimes2022-04-071-0/+2
* bpo-40421: test_capi uses assertEqual(), not assertEquals() (GH-32361)Victor Stinner2022-04-061-1/+1
* bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)Mark Shannon2022-03-311-0/+20
* bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)Mark Shannon2022-03-011-1/+1
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-111-2/+2
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-051-0/+2
* bpo-46433: _PyType_GetModuleByDef: handle static types in MRO (GH-30696)Petr Viktorin2022-02-021-0/+16
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-251-0/+1
* bpo-40280: Misc fixes for wasm32-emscripten (GH-30722)Christian Heimes2022-01-201-0/+6
* bpo-44133: Skip PyThread_get_thread_native_id() if not available (GH-30636)Victor Stinner2022-01-171-1/+7
* bpo-44133: Link Python executable with object files (GH-30556)Victor Stinner2022-01-131-0/+18
* bpo-46263: Fix second location that needs MALLOC_CONF on FreeBSD (GH-30440)Christian Heimes2022-01-061-1/+5
* bpo-46263: FreeBSD 14.0 jemalloc workaround for junk bytes of freed memory (G...Christian Heimes2022-01-061-2/+7
* bpo-43931: Export Python version as API data (GH-25577)Gabriele N. Tornetta2021-12-101-0/+3
* bpo-45822: Minor cleanups to the test_Py_CompileString test (GH-29750)Pablo Galindo Salgado2021-11-241-8/+8
* bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are n...Pablo Galindo Salgado2021-11-161-0/+8
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-061-1/+1
* bpo-44050: Extension modules can share state when they don't support sub-inte...Hai Shi2021-10-051-0/+31
* bpo-44984: Rewrite test_null_strings in _testcapi (GH-27904)Serhiy Storchaka2021-08-231-0/+12
* bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589)Mark Shannon2021-08-041-3/+7
* bpo-28395: Remove unnecessary semicolons in tests (GH-26868)Dong-hee Na2021-06-231-2/+2
* bpo-44337: Port LOAD_ATTR to PEP 659 adaptive interpreter (GH-26595)Mark Shannon2021-06-101-1/+1
* bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)Victor Stinner2021-01-271-32/+65
* bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)Victor Stinner2021-01-251-1/+1
* bpo-42955: Add sys.modules_names (GH-24238)Victor Stinner2021-01-251-3/+14
* bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)Victor Stinner2021-01-191-7/+16
* bpo-42923: Dump extension modules on fatal error (GH-24207)Victor Stinner2021-01-181-0/+10
* bpo-42923: Add Py_FatalError() test in test_capi (GH-24240)Victor Stinner2021-01-181-0/+9
* bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123)Hai Shi2020-11-061-0/+3
* closes bpo-41689: Preserve text signature from tp_doc in C heap type creation...Benjamin Peterson2020-09-021-0/+4
* bpo-41338: Fix DeprecationWarning in tests (GH-21542)Inada Naoki2020-07-201-0/+6
* bpo-40275: Use new test.support helper submodules in tests (GH-21314)Hai Shi2020-07-061-1/+2
* bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp...scoder2020-07-031-0/+8
* bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#21021)Guido van Rossum2020-06-281-0/+21
* bpo-40724: Support setting buffer slots from type specs (GH-20648)scoder2020-06-061-0/+5
* bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571)Victor Stinner2020-06-011-1/+4
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-271-2/+3
* bpo-38787: C API for module state access from extension methods (PEP 573) (GH...Petr Viktorin2020-05-071-0/+73
* bpo-40302: Add pycore_byteswap.h header file (GH-19552)Victor Stinner2020-04-171-0/+8
* bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051)Victor Stinner2020-03-181-1/+2
* bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is call...Serhiy Storchaka2020-03-091-0/+14
* bpo-39882: Py_FatalError() logs the function name (GH-18819)Victor Stinner2020-03-061-9/+11
* bpo-38875: test_capi: trashcan tests require cpu resource (GH-17314)Victor Stinner2019-11-211-0/+2