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
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-114099: Additions to standard library to support iOS (GH-117052)
Russell Keith-Magee
2024-03-28
2
-3/+11
*
gh-117288: Allocate fewer label IDs in _PyCfg_ToInstructionSequence (#117290)
Irit Katriel
2024-03-27
3
-6/+36
*
gh-115775: Compiler adds __static_attributes__ field to classes (#115913)
Irit Katriel
2024-03-26
1
-1/+53
*
GH-117108: Set the "old space bit" to "visited" for all young objects (#117213)
Mark Shannon
2024-03-26
1
-17/+37
*
GH-116422: Tier2 hot/cold splitting (GH-116813)
Mark Shannon
2024-03-26
9
-751/+834
*
A few minor tweaks to get stats working and compiling cleanly. (#117219)
Mark Shannon
2024-03-25
2
-6/+3
*
gh-117176: Fix compiler warning in Python/optimizer_bytecodes.c (GH-117199)
Kirill Podoprigora
2024-03-24
2
-2/+2
*
gh-117180: Complete call sequence when trace stack overflow (GH-117184)
Ken Jin
2024-03-23
1
-0/+1
*
GH-117108: Change the size of the GC increment to about 1% of the total heap ...
Mark Shannon
2024-03-22
2
-16/+16
*
gh-113024: C API: Add PyObject_GenericHash() function (GH-113025)
Serhiy Storchaka
2024-03-22
1
-1/+7
*
gh-105716: Fix _PyInterpreterState_IsRunningMain() For Embedders (gh-117140)
Eric Snow
2024-03-22
2
-20/+19
*
gh-117045: Add code object to function version cache (#117028)
Guido van Rossum
2024-03-21
4
-38/+106
*
gh-116522: Refactor `_PyThreadState_DeleteExcept` (#117131)
Sam Gross
2024-03-21
3
-22/+31
*
gh-116996: Add pystats about _Py_uop_analyse_and_optimize (GH-116997)
Michael Droettboom
2024-03-21
2
-2/+22
*
gh-76785: Drop PyInterpreterID_Type (gh-117101)
Eric Snow
2024-03-21
1
-5/+0
*
gh-115754: Add Py_GetConstant() function (#116883)
Victor Stinner
2024-03-21
1
-0/+4
*
gh-105716: Update interp->threads.main After Fork (gh-117049)
Eric Snow
2024-03-21
2
-0/+39
*
gh-76785: Clean Up Interpreter ID Conversions (gh-117048)
Eric Snow
2024-03-21
1
-24/+79
*
gh-116522: Stop the world before fork() and during shutdown (#116607)
Sam Gross
2024-03-21
2
-0/+9
*
GH-117066: Tier 2 optimizer: Don't throw away good traces if we can't optimiz...
Mark Shannon
2024-03-20
3
-8/+16
*
gh-116908: Only write to `_pending_calls.calls_to_do` with atomic operations ...
Brett Simmers
2024-03-20
1
-2/+2
*
GH-108362: Incremental Cycle GC (GH-116206)
Mark Shannon
2024-03-20
4
-321/+512
*
gh-117041: Add "-X gil" in the Python CLI help (GH-117042)
Serhiy Storchaka
2024-03-19
1
-0/+5
*
gh-90300: Improve the Python CLI help output (GH-115853)
Serhiy Storchaka
2024-03-19
1
-78/+40
*
GH-116017: Put JIT code and data on the same page (GH-116845)
Brandt Bucher
2024-03-19
1
-29/+23
*
gh-116808: Fix optimized trace length histogram (GH-116827)
Michael Droettboom
2024-03-19
1
-1/+2
*
gh-115756: make PyCode_GetFirstFree an unstable API (GH-115781)
Bogdan Romanyuk
2024-03-19
2
-2/+2
*
gh-108716: Cleanup remaining deepfreeze infrastructure (#116919)
Guido van Rossum
2024-03-18
2
-34/+0
*
gh-116916: Remove separate next_func_version counter (#116918)
Guido van Rossum
2024-03-18
1
-1/+0
*
Cleanup tier2 debug output (#116920)
Guido van Rossum
2024-03-18
5
-22/+50
*
gh-63207: Use GetSystemTimePreciseAsFileTime() in time.time() (#116822)
Victor Stinner
2024-03-18
1
-16/+22
*
gh-116664: Ensure thread-safe dict access in _warnings (#116768)
Erlend E. Aasland
2024-03-18
1
-29/+32
*
gh-114271: Fix race in `Thread.join()` (#114839)
mpage
2024-03-16
2
-48/+1
*
gh-112536: Add TSAN builds on Github Actions (#116872)
Donghee Na
2024-03-16
1
-0/+4
*
GH-115802: Reduce the size of _INIT_CALL_PY_EXACT_ARGS. (GH-116856)
Mark Shannon
2024-03-15
3
-72/+54
*
gh-116735: Use `MISSING` for `CALL` event if argument is absent (GH-116737)
Tian Gao
2024-03-15
2
-2/+2
*
GH-116422: Modify a few uops so that they can be supported by tier 2 with hot...
Mark Shannon
2024-03-15
3
-53/+45
*
gh-111696, PEP 737: Add PyType_GetModuleName() function (#116824)
Victor Stinner
2024-03-14
1
-2/+1
*
GH-116422: Factor out eval breaker checks at end of calls into its own micro-...
Mark Shannon
2024-03-14
4
-227/+327
*
gh-88494: Use QueryPerformanceCounter() for time.monotonic() (#116781)
Victor Stinner
2024-03-14
1
-138/+73
*
gh-90300: Fix undocumented envvars in the Python CLI help (GH-116765)
Serhiy Storchaka
2024-03-14
1
-0/+3
*
Docs: fix spelling of the word 'transferring' (#116641)
guangwu
2024-03-13
1
-3/+3
*
gh-116760: Fix pystats for trace attempts (GH-116761)
Michael Droettboom
2024-03-13
3
-2/+1
*
gh-90300: Document equivalent -X options for envvars in the Python CLI help (...
Serhiy Storchaka
2024-03-13
1
-29/+31
*
gh-90300: Sort the -X options and some envvars in the Python CLI help (GH-116...
Serhiy Storchaka
2024-03-13
1
-40/+43
*
gh-90300: Fix cmdline.rst (GH-116721)
Serhiy Storchaka
2024-03-13
1
-2/+2
*
gh-115419: Change default sym to not_null (GH-116562)
Ken Jin
2024-03-13
2
-90/+100
*
gh-116626: Emit `CALL` events for all `INSTRUMENTED_CALL_FUNCTION_EX` (GH-116...
Tian Gao
2024-03-13
2
-28/+29
*
GH-116098: Remove dead frame object creation code (GH-116687)
Tian Gao
2024-03-12
1
-18/+9
*
gh-116604: Check for `gcstate->enabled` in _Py_RunGC in free-threaded build (...
Sam Gross
2024-03-12
1
-0/+4
[next]