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
/
Include
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-81057: Move the global Dict-Related Versions to _PyRuntimeState (gh-99497)
Eric Snow
2022-11-16
6
-26/+67
*
gh-81057: Move contextvars-related Globals to _PyRuntimeState (gh-99400)
Eric Snow
2022-11-16
5
-4/+33
*
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
Eric Snow
2022-11-16
10
-21/+87
*
gh-81057: Move Globals in Core Code to _PyRuntimeState (gh-99496)
Eric Snow
2022-11-15
6
-3/+56
*
Merge the 3.12.0a2 release into main.
Thomas Wouters
2022-11-15
12
-8/+65
|
\
|
*
GH-99205: remove `_static` field from `PyThreadState` and `PyInterpreterState...
Kumar Aditya
2022-11-15
3
-8/+0
|
*
gh-81057: Move the Remaining Import State Globals to _PyRuntimeState (gh-99488)
Eric Snow
2022-11-14
2
-0/+21
|
*
gh-81057: Move Global Variables Holding Objects to _PyRuntimeState. (gh-99487)
Eric Snow
2022-11-14
4
-0/+32
|
*
gh-87092: expose the compiler's codegen to python for unit tests (GH-99111)
Irit Katriel
2022-11-14
5
-0/+12
*
|
Post 3.12.0a2
Thomas Wouters
2022-11-15
1
-1/+1
*
|
Python 3.12.0a2
v3.12.0a2
Thomas Wouters
2022-11-14
1
-2/+2
|
/
*
gh-83638: Add sqlite3.Connection.autocommit for PEP 249 compliant behaviour (...
Erlend E. Aasland
2022-11-12
4
-0/+5
*
gh-81057: Move PyImport_Inittab to _PyRuntimeState (gh-99402)
Eric Snow
2022-11-12
3
-0/+4
*
gh-81057: Move the Allocators to _PyRuntimeState (gh-99217)
Eric Snow
2022-11-11
6
-15/+877
*
gh-81057: Add PyInterpreterState.static_objects (gh-99397)
Eric Snow
2022-11-11
4
-2/+30
*
gh-81057: Move the Extension Modules Cache to _PyRuntimeState (gh-99355)
Eric Snow
2022-11-11
4
-0/+52
*
gh-81057: Generate a Separate Initializer For Each Part of the Global Objects...
Eric Snow
2022-11-11
3
-1469/+1479
*
GH-96421: Insert shim frame on entry to interpreter (GH-96319)
Mark Shannon
2022-11-10
8
-94/+108
*
GH-98686: Get rid of "adaptive" and "quick" instructions (GH-99182)
Brandt Bucher
2022-11-09
3
-136/+148
*
GH-90699: disallow `_Py_IDENTIFIER` in core code (GH-99210)
Kumar Aditya
2022-11-09
1
-2/+2
*
gh-98724: Fix Py_CLEAR() macro side effects (#99100)
Victor Stinner
2022-11-09
2
-27/+36
*
gh-90868: Add _PyStaticObject_CheckRefcnt() function (#99261)
Victor Stinner
2022-11-09
1
-5777/+1456
*
gh-90868: Adjust the Generated Objects (gh-99223)
Eric Snow
2022-11-08
3
-7081/+7114
*
gh-91248: Add PyFrame_GetVar() function (#95712)
Victor Stinner
2022-11-08
1
-1/+2
*
GH-90699: Remove remaining `_Py_IDENTIFIER` stdlib usage (GH-99067)
Kumar Aditya
2022-11-07
3
-7/+71
*
GH-96793: Specialize FOR_ITER for generators. (GH-98772)
Mark Shannon
2022-11-07
4
-44/+47
*
gh-99139: Improve NameError error suggestion for instances (#99140)
Pablo Galindo Salgado
2022-11-06
2
-0/+8
*
gh-98284: better error message for undefined abstractmethod (#97971)
Kaushik Kulkarni
2022-11-05
2
-6/+0
*
GH-90699: Remove `_Py_IDENTIFIER` usage from `_ctypes` (GH-99054)
Kumar Aditya
2022-11-03
2
-0/+128
*
GH-96793: Implement PEP 479 in bytecode. (GH-99006)
Mark Shannon
2022-11-03
2
-49/+50
*
GH-98686: Quicken everything (GH-98687)
Brandt Bucher
2022-11-02
4
-75/+52
*
GH-90699: Remove `_Py_IDENTIFIER` usage from `_asyncio` module (#99010)
Kumar Aditya
2022-11-02
2
-0/+128
*
GH-90699: Remove `_Py_IDENTIFIER` usage from `_json` module (GH-98956)
Kumar Aditya
2022-11-02
2
-0/+38
*
gh-87092: do not allocate PyFutureFeatures dynamically (GH-98913)
Irit Katriel
2022-11-02
1
-3/+4
*
gh-98610: Adjust the Optional Restrictions on Subinterpreters (GH-98618)
Eric Snow
2022-10-31
2
-8/+19
*
gh-98410: move getbufferproc and releasebufferproc to buffer.h (#31158)
David Hewitt
2022-10-31
2
-4/+3
*
gh-98811: use full source location to simplify __future__ imports error check...
Irit Katriel
2022-10-31
1
-2/+17
*
gh-98783: Fix crashes when `str` subclasses are used in `_PyUnicode_Equal` (#...
Nikita Sobolev
2022-10-30
1
-1/+1
*
GH-96793: Change `FOR_ITER` to not pop the iterator on exhaustion. (GH-96801)
Mark Shannon
2022-10-27
2
-92/+93
*
gh-98586: Add vector call APIs to the Limited API (GH-98587)
Wenzel Jakob
2022-10-27
2
-13/+16
*
gh-98608: Change _Py_NewInterpreter() to _Py_NewInterpreterFromConfig() (gh-9...
Eric Snow
2022-10-26
4
-5/+45
*
gh-91058: Add error suggestions to 'import from' import errors (#98305)
Pablo Galindo Salgado
2022-10-25
3
-0/+16
*
Post 3.12.0a1
Thomas Wouters
2022-10-25
1
-1/+1
*
Python 3.12.0a1
v3.12.0a1
Thomas Wouters
2022-10-24
1
-2/+2
*
gh-91051: allow setting a callback hook on PyType_Modified (GH-97875)
Carl Meyer
2022-10-21
2
-0/+12
*
gh-95023: Added os.setns and os.unshare functions (#95046)
Noam Cohen
2022-10-20
2
-0/+8
*
gh-98417: Store int_max_str_digits on the Interpreter State (GH-98418)
Eric Snow
2022-10-19
1
-0/+6
*
gh-97669: Create Tools/build/ directory (#97963)
Victor Stinner
2022-10-17
5
-6/+6
*
gh-95756: Lazily created cached co_* attrs (GH-97791)
Ken Jin
2022-10-11
1
-1/+8
*
gh-95011: Migrate syslog module to Argument Clinic (GH-95012)
Noam Cohen
2022-10-08
2
-0/+24
[next]