summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_capi/test_misc.py
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-119585: Fix crash involving `PyGILState_Release()` and `PyThreadSta...Miss Islington (bot)2024-05-311-0/+16
* [3.13] gh-118846: Fix free-threading test failures when run sequentially (GH-...Miss Islington (bot)2024-05-101-1/+4
* gh-110693: Use a Larger Queue for Per-Interpreter Pending Calls (gh-118302)Eric Snow2024-04-271-2/+2
* gh-110693: Pending Calls Machinery Cleanups (gh-118296)Eric Snow2024-04-261-15/+70
* gh-76785: Rename _xxsubinterpreters to _interpreters (gh-117791)Eric Snow2024-04-241-1/+1
* gh-117649: Fix file descriptor leak in (expected) failing test case (#117780)Sam Gross2024-04-111-0/+3
* gh-117649: Raise ImportError for unsupported modules in free-threaded build (...Sam Gross2024-04-111-7/+33
* gh-76785: Add More Tests to test_interpreters.test_api (gh-117662)Eric Snow2024-04-111-4/+4
* gh-76785: Consolidate Some Interpreter-related Testing Helpers (gh-117485)Eric Snow2024-04-021-46/+37
* gh-76785: Add PyInterpreterConfig Helpers (gh-117170)Eric Snow2024-04-021-0/+251
* gh-76785: Drop PyInterpreterID_Type (gh-117101)Eric Snow2024-03-211-88/+220
* gh-76785: Clean Up Interpreter ID Conversions (gh-117048)Eric Snow2024-03-211-2/+2
* gh-94808: add tests covering `PyFunction_{Get,Set}Closure` (GH-99429)Nikita Sobolev2024-03-201-1/+119
* gh-114099 - Add iOS framework loading machinery. (GH-116454)Russell Keith-Magee2024-03-191-2/+14
* gh-116417: Move limited C API unicode.c tests to _testlimitedcapi (#116993)Victor Stinner2024-03-191-1/+1
* gh-111696, PEP 737: Add PyType_GetModuleName() function (#116824)Victor Stinner2024-03-141-2/+3
* gh-111696, PEP 737: Add PyType_GetFullyQualifiedName() function (#116815)Victor Stinner2024-03-141-11/+65
* gh-116656: Fix test_capi test_py_config_isoloated_per_interpreter() (#116658)Victor Stinner2024-03-121-0/+1
* gh-116417: Add _testlimitedcapi C extension (#116419)Victor Stinner2024-03-071-21/+33
* gh-81682: Fix test failures when CPython is built without docstrings (GH-113410)Serhiy Storchaka2023-12-231-0/+2
* Move optimizer/executor tests to new file test_capi/test_opt.py (#113072)Guido van Rossum2023-12-131-535/+0
* gh-112320: Implement on-trace confidence tracking for branches (#112321)Guido van Rossum2023-12-121-0/+31
* gh-76785: Fixes for test.support.interpreters (gh-112982)Eric Snow2023-12-121-0/+132
* gh-112535: Add test on _Py_ThreadId() (#112709)Victor Stinner2023-12-041-0/+55
* gh-76785: Add _PyType_GetModuleName() to the Internal C-API (gh-112323)Eric Snow2023-11-221-0/+15
* gh-106529: Make FOR_ITER a viable uop (#112134)Guido van Rossum2023-11-201-0/+30
* GH-111848: Convert remaining jumps to deopts into tier 2 code. (GH-112045)Mark Shannon2023-11-141-5/+5
* GH-111848: Tidy up tier 2 handling of FOR_ITER specialization by using DEOPT_...Mark Shannon2023-11-081-3/+3
* GH-111485: Use micro-ops to split specialization code from base action (GH-11...Mark Shannon2023-11-011-1/+1
* GH-111339: Change `valid` property of executors to `is_valid()` method (GH-11...Mark Shannon2023-10-261-6/+6
* gh-111065: Add more tests for the C API with the PySys_ prefix (GH-111067)Serhiy Storchaka2023-10-251-40/+0
* gh-110572: Remove `test_*` from `_testcapi/getargs.c` (GH-111214)Nikita Sobolev2023-10-241-1/+1
* GH-109369: Add machinery for deoptimizing tier2 executors, both individually ...Mark Shannon2023-10-231-0/+61
* gh-84489: Properly handle trailing spaces in Py_BuildValue() format strings (...Zackery Spytz2023-10-111-8/+16
* gh-84489: C API: Add tests for Py_BuildValue() (GH-110596)Serhiy Storchaka2023-10-111-0/+80
* gh-109653: Remove unused imports in the `Lib/` directory (#109803)Alex Waygood2023-09-241-1/+1
* gh-108724: Add PyMutex and _PyParkingLot APIs (gh-109344)Sam Gross2023-09-191-1/+9
* gh-109496: Skip test_capi.test_decref_freed_object() on ASAN (#109573)Victor Stinner2023-09-191-0/+2
* gh-109496: Detect Py_DECREF() after dealloc in debug mode (#109539)Victor Stinner2023-09-181-10/+26
* gh-109214: Rename SAVE_IP to _SET_IP, and similar (#109285)Guido van Rossum2023-09-111-2/+2
* gh-109039: Branch prediction for Tier 2 interpreter (#109038)Guido van Rossum2023-09-111-14/+31
* gh-108727: Fix segfault due to missing tp_dealloc definition for CounterOptim...Irit Katriel2023-09-011-0/+7
* gh-108488: Initialize JUMP_BACKWARD cache to 0, not 17 (#108591)Guido van Rossum2023-08-291-2/+2
* gh-107265: Fix code_hash for ENTER_EXECUTOR case (#108188)Dong-hee Na2023-08-211-2/+4
* gh-107265: Fix code_richcompare for ENTER_EXECUTOR case (gh-108165)Dong-hee Na2023-08-211-0/+11
* gh-106581: Project through calls (#108067)Guido van Rossum2023-08-171-0/+1
* gh-106581: Split `CALL_PY_EXACT_ARGS` into uops (#107760)Guido van Rossum2023-08-161-0/+17
* gh-107810: Improve DeprecationWarning for metaclasses with custom tp_new (GH-...Marc Mueller2023-08-101-1/+1
* gh-107735: Move just added C API tests to better place (GH-107743)Serhiy Storchaka2023-08-071-40/+40
* gh-107735: Add C API tests for PySys_GetObject() and PySys_SetObject() (GH-10...Serhiy Storchaka2023-08-071-0/+43