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-117783: Immortalize objects that use deferred reference counting (#118112)
Sam Gross
2024-04-29
2
-0/+41
*
gh-117953: Split Up _PyImport_LoadDynamicModuleWithSpec() (gh-118203)
Eric Snow
2024-04-29
2
-137/+181
*
gh-107674: Lazy load line number to improve performance of tracing (GH-118127)
Tian Gao
2024-04-29
2
-15/+48
*
GH-118095: Allow a variant of RESUME_CHECK in tier 2 (GH-118286)
Mark Shannon
2024-04-29
4
-1/+77
*
gh-109118: Make comprehensions work within annotation scopes, but without inl...
Jelle Zijlstra
2024-04-28
1
-14/+4
*
gh-116749: Disable GIL by default in free-threaded build (#118295)
Sam Gross
2024-04-26
1
-3/+1
*
GH-118095: Add dynamic exit support and FOR_ITER_GEN support to tier 2 (GH-11...
Mark Shannon
2024-04-26
7
-34/+181
*
gh-117680: Fix msvc warning in instruction_sequence.c (#118326)
neonene
2024-04-26
1
-2/+2
*
gh-117385: Remove unhooked events on sys.settrace (GH-117386)
Tian Gao
2024-04-26
1
-3/+2
*
gh-110693: Pending Calls Machinery Cleanups (gh-118296)
Eric Snow
2024-04-26
1
-55/+104
*
GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)
Mark Shannon
2024-04-25
9
-72/+111
*
gh-102511: Speed up os.path.splitroot() with native helpers (GH-118089)
Nice Zombies
2024-04-25
1
-32/+115
*
gh-117953: Fix Refleaks Introduced by gh-118194 (gh-118250)
Eric Snow
2024-04-24
1
-1/+5
*
gh-117953: Add Internal struct _Py_ext_module_loader_info (gh-118194)
Eric Snow
2024-04-24
2
-93/+151
*
gh-117953: Let update_global_state_for_extension() Caller Decide If Singlepha...
Eric Snow
2024-04-24
1
-20/+93
*
gh-76785: Rename _xxsubinterpreters to _interpreters (gh-117791)
Eric Snow
2024-04-24
1
-0/+3
*
gh-117953: Cleanups For fix_up_extension() in import.c (gh-118192)
Eric Snow
2024-04-24
4
-97/+161
*
GH-115419: Move setting the instruction pointer to error exit stubs (GH-118088)
Mark Shannon
2024-04-24
4
-4/+5
*
GH-118095: Convert DEOPT_IFs on likely side exits to EXIT_IFs (GH-118106)
Mark Shannon
2024-04-24
2
-12/+12
*
gh-117901: Add option for compiler's codegen to save nested instruction seque...
Irit Katriel
2024-04-24
1
-0/+18
*
gh-118074: Immortal executors are not GC-able (#118182)
Guido van Rossum
2024-04-23
1
-4/+1
*
gh-117657: Quiet TSAN warnings about remaining non-atomic accesses of `tstate...
mpage
2024-04-23
2
-2/+3
*
gh-117953: Small Cleanup of Extensions-Related Machinery Code (gh-118167)
Eric Snow
2024-04-23
2
-75/+104
*
gh-68114: Fix handling for removed PyArg_ParseTuple 'w' formatters (GH-8204)
Joe Jevnik
2024-04-23
1
-0/+5
*
GH-118074: Executors in the COLD_EXITS array are not GC'able (#118117)
Guido van Rossum
2024-04-22
1
-0/+10
*
gh-109118: Allow lambdas in annotation scopes in classes (#118019)
Jelle Zijlstra
2024-04-22
1
-11/+0
*
GH-115480: Reduce guard strength for binary ops when type of one operand is k...
Mark Shannon
2024-04-22
6
-19/+171
*
gh-112075: Make instance attributes stored in inline "dict" thread safe (#114...
Dino Viehland
2024-04-22
4
-24/+17
*
gh-116818: Make `sys.settrace`, `sys.setprofile`, and monitoring thread-safe ...
Dino Viehland
2024-04-19
7
-60/+214
*
gh-114099: Modify preprocessor symbol usage to support older macOS SDKs (GH-1...
Russell Keith-Magee
2024-04-19
1
-1/+2
*
GH-116202: Incorporate invalidation check into _START_EXECUTOR. (GH-118044)
Mark Shannon
2024-04-19
4
-3/+9
*
GH-115419: Improve list of escaping functions (GH-118054)
Mark Shannon
2024-04-19
1
-1/+3
*
gh-117535: Change unknown filename of warnings from `sys` to `<sys>` (#118018)
Tian Gao
2024-04-19
1
-2/+2
*
gh-112069: Add _PySet_NextEntryRef to be thread-safe. (gh-117990)
Donghee Na
2024-04-18
2
-11/+19
*
GH-118036: Fix a bug with CALL_STAT_INC (#117933)
Guido van Rossum
2024-04-18
1
-2/+0
*
gh-117987: Restore several functions removed in Python 3.13 alpha 1 (GH-117993)
Victor Stinner
2024-04-18
2
-8/+4
*
GH-115419: Tidy up tier 2 optimizer. Merge peephole pass into main pass (GH-1...
Mark Shannon
2024-04-18
3
-132/+169
*
gh-118023: Fix reference leak (#118025)
Kirill Podoprigora
2024-04-18
1
-0/+2
*
gh-117657: Quiet erroneous TSAN reports of data races in `_PySeqLock` (#117955)
mpage
2024-04-17
1
-3/+3
*
gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)
Irit Katriel
2024-04-17
3
-164/+638
*
gh-117929: Restore removed PyEval_InitThreads() function (#117931)
Victor Stinner
2024-04-17
1
-2/+1
*
GH-117760: Streamline the trashcan mechanism (GH-117763)
Mark Shannon
2024-04-17
1
-0/+2
*
gh-115178: Add Counts of UOp Pairs to pystats (GH-115181)
Jeff Glass
2024-04-16
2
-0/+11
*
gh-117657: Quiet more TSAN warnings due to incorrect modeling of compare/exch...
mpage
2024-04-15
1
-2/+2
*
gh-117657: Quiet TSAN warning about a data race between `start_the_world()` a...
mpage
2024-04-15
1
-1/+2
*
gh-117376: Partial implementation of deferred reference counting (#117696)
Sam Gross
2024-04-12
1
-1/+18
*
gh-117764: Fix and add signatures for many builtins (GH-117769)
Serhiy Storchaka
2024-04-12
4
-17/+17
*
gh-117764: Add signatures for some functions in the sys module (GH-117770)
Serhiy Storchaka
2024-04-12
2
-35/+73
*
gh-76785: Handle Legacy Interpreters Properly (gh-117490)
Eric Snow
2024-04-11
2
-14/+30
*
gh-117649: Raise ImportError for unsupported modules in free-threaded build (...
Sam Gross
2024-04-11
2
-1/+19
[prev]
[next]