index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_capi
/
test_misc.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-81682: Fix test failures when CPython is built without docstrings (GH-113410)
Serhiy Storchaka
2023-12-23
1
-0/+2
*
Move optimizer/executor tests to new file test_capi/test_opt.py (#113072)
Guido van Rossum
2023-12-13
1
-535/+0
*
gh-112320: Implement on-trace confidence tracking for branches (#112321)
Guido van Rossum
2023-12-12
1
-0/+31
*
gh-76785: Fixes for test.support.interpreters (gh-112982)
Eric Snow
2023-12-12
1
-0/+132
*
gh-112535: Add test on _Py_ThreadId() (#112709)
Victor Stinner
2023-12-04
1
-0/+55
*
gh-76785: Add _PyType_GetModuleName() to the Internal C-API (gh-112323)
Eric Snow
2023-11-22
1
-0/+15
*
gh-106529: Make FOR_ITER a viable uop (#112134)
Guido van Rossum
2023-11-20
1
-0/+30
*
GH-111848: Convert remaining jumps to deopts into tier 2 code. (GH-112045)
Mark Shannon
2023-11-14
1
-5/+5
*
GH-111848: Tidy up tier 2 handling of FOR_ITER specialization by using DEOPT_...
Mark Shannon
2023-11-08
1
-3/+3
*
GH-111485: Use micro-ops to split specialization code from base action (GH-11...
Mark Shannon
2023-11-01
1
-1/+1
*
GH-111339: Change `valid` property of executors to `is_valid()` method (GH-11...
Mark Shannon
2023-10-26
1
-6/+6
*
gh-111065: Add more tests for the C API with the PySys_ prefix (GH-111067)
Serhiy Storchaka
2023-10-25
1
-40/+0
*
gh-110572: Remove `test_*` from `_testcapi/getargs.c` (GH-111214)
Nikita Sobolev
2023-10-24
1
-1/+1
*
GH-109369: Add machinery for deoptimizing tier2 executors, both individually ...
Mark Shannon
2023-10-23
1
-0/+61
*
gh-84489: Properly handle trailing spaces in Py_BuildValue() format strings (...
Zackery Spytz
2023-10-11
1
-8/+16
*
gh-84489: C API: Add tests for Py_BuildValue() (GH-110596)
Serhiy Storchaka
2023-10-11
1
-0/+80
*
gh-109653: Remove unused imports in the `Lib/` directory (#109803)
Alex Waygood
2023-09-24
1
-1/+1
*
gh-108724: Add PyMutex and _PyParkingLot APIs (gh-109344)
Sam Gross
2023-09-19
1
-1/+9
*
gh-109496: Skip test_capi.test_decref_freed_object() on ASAN (#109573)
Victor Stinner
2023-09-19
1
-0/+2
*
gh-109496: Detect Py_DECREF() after dealloc in debug mode (#109539)
Victor Stinner
2023-09-18
1
-10/+26
*
gh-109214: Rename SAVE_IP to _SET_IP, and similar (#109285)
Guido van Rossum
2023-09-11
1
-2/+2
*
gh-109039: Branch prediction for Tier 2 interpreter (#109038)
Guido van Rossum
2023-09-11
1
-14/+31
*
gh-108727: Fix segfault due to missing tp_dealloc definition for CounterOptim...
Irit Katriel
2023-09-01
1
-0/+7
*
gh-108488: Initialize JUMP_BACKWARD cache to 0, not 17 (#108591)
Guido van Rossum
2023-08-29
1
-2/+2
*
gh-107265: Fix code_hash for ENTER_EXECUTOR case (#108188)
Dong-hee Na
2023-08-21
1
-2/+4
*
gh-107265: Fix code_richcompare for ENTER_EXECUTOR case (gh-108165)
Dong-hee Na
2023-08-21
1
-0/+11
*
gh-106581: Project through calls (#108067)
Guido van Rossum
2023-08-17
1
-0/+1
*
gh-106581: Split `CALL_PY_EXACT_ARGS` into uops (#107760)
Guido van Rossum
2023-08-16
1
-0/+17
*
gh-107810: Improve DeprecationWarning for metaclasses with custom tp_new (GH-...
Marc Mueller
2023-08-10
1
-1/+1
*
gh-107735: Move just added C API tests to better place (GH-107743)
Serhiy Storchaka
2023-08-07
1
-40/+40
*
gh-107735: Add C API tests for PySys_GetObject() and PySys_SetObject() (GH-10...
Serhiy Storchaka
2023-08-07
1
-0/+43
*
gh-107178: Add the C API tests for the Abstract Objects Layer (GH-107179)
Serhiy Storchaka
2023-08-07
1
-131/+0
*
Fix test_capi.test_misc when run with -R:: (#107566)
Guido van Rossum
2023-08-02
1
-30/+34
*
gh-107082: Remove debug hack from get_first_executor in test_capi.test_misc (...
Guido van Rossum
2023-07-23
1
-1/+1
*
gh-106714: Fix test_capi to not write a coredump (#107007)
Victor Stinner
2023-07-22
1
-3/+9
*
GH-104584: Miscellaneous fixes for -Xuops (GH-106908)
Brandt Bucher
2023-07-20
1
-5/+9
*
gh-106603: Make uop struct a triple (opcode, oparg, operand) (#106794)
Guido van Rossum
2023-07-17
1
-12/+12
*
gh-106529: Generate uops for POP_JUMP_IF_[NOT_]NONE (#106796)
Guido van Rossum
2023-07-17
1
-0/+30
*
gh-106529: Fix subtle Tier 2 edge case with list iterator (#106756)
Guido van Rossum
2023-07-15
1
-0/+13
*
gh-106529: Split FOR_ITER_{LIST,TUPLE} into uops (#106696)
Guido van Rossum
2023-07-14
1
-2/+45
*
gh-106529: Split FOR_ITER_RANGE into uops (#106638)
Guido van Rossum
2023-07-12
1
-3/+22
*
gh-106529: Implement JUMP_FORWARD in uops (with test) (#106651)
Guido van Rossum
2023-07-11
1
-0/+25
*
gh-106529: Support JUMP_BACKWARD in Tier 2 (uops) (#106543)
Guido van Rossum
2023-07-11
1
-2/+14
*
gh-106529: Implement POP_JUMP_IF_XXX uops (#106551)
Guido van Rossum
2023-07-10
1
-20/+43
*
gh-104584: Allow unspecialized instructions in superblocks (#106497)
Guido van Rossum
2023-07-07
1
-0/+28
*
gh-104584: Handle EXTENDED_ARG in superblock creation (#106489)
Guido van Rossum
2023-07-06
1
-0/+56
*
gh-104584: Clean up and fix uops tests and fix crash (#106492)
Guido van Rossum
2023-07-06
1
-24/+30
*
GH-106360: Support very basic superblock introspection (#106422)
Mark Shannon
2023-07-04
1
-0/+23
*
gh-106200: Remove unused imports (#106201)
Nikita Sobolev
2023-06-28
1
-2/+0
*
GH-104584: Fix test_capi.test_counter_optimizer() when run twice (#106171)
Victor Stinner
2023-06-28
1
-15/+24
[next]