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
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Pass reference to func, as well as args, when pushing frame. (GH-31100)
Mark Shannon
2022-02-03
1
-0/+2
*
bpo-44977: Deprecate delegation of int to __trunc__ (GH-31031)
Zackery Spytz
2022-02-03
1
-0/+5
*
bpo-46433: _PyType_GetModuleByDef: handle static types in MRO (GH-30696)
Petr Viktorin
2022-02-02
1
-5/+4
*
bpo-46072: Add some frame stats. (GH-31060)
Mark Shannon
2022-02-02
1
-0/+1
*
bpo-46072: Add some object layout and allocation stats (GH-31051)
Mark Shannon
2022-02-01
2
-0/+16
*
bpo-46564: do not create frame object for super object (GH-31002)
Kumar Aditya
2022-02-01
1
-12/+8
*
bpo-46407: Fix long_mod refleak (GH-31025)
Ken Jin
2022-01-31
1
-1/+1
*
bpo-46417: _PyStructSequence_FiniType() updates _Py_RefTotal (GH-30988)
Victor Stinner
2022-01-28
1
-0/+3
*
bpo-46407: Optimizing some modulo operations (GH-30653)
Crowthebird
2022-01-28
1
-9/+106
*
bpo-40170: Remove PyHeapType_GET_MEMBERS() macro (GH-30942)
Victor Stinner
2022-01-27
1
-6/+6
*
bpo-40170: Move _Py_GetAllocatedBlocks() to pycore_pymem.h (GH-30943)
Victor Stinner
2022-01-27
1
-3/+0
*
bpo-46476: Simplify and fix _PyStaticCode_Dealloc (GH-30965)
Christian Heimes
2022-01-27
1
-5/+8
*
bpo-46476: Fix memory leak in code objects generated by deepfreeze (GH-30853)
Kumar Aditya
2022-01-27
1
-0/+15
*
bpo-40170: Remove _Py_GetAllocatedBlocks() function (GH-30940)
Victor Stinner
2022-01-27
1
-1/+5
*
bpo-40170: PyType_SUPPORTS_WEAKREFS() becomes a regular function (GH-30938)
Victor Stinner
2022-01-27
3
-5/+14
*
bpo-46527: allow calling enumerate(iterable=...) again (GH-30904)
Jelle Zijlstra
2022-01-26
1
-10/+37
*
bpo-46504: faster code for trial quotient in x_divrem() (GH-30856)
Tim Peters
2022-01-25
1
-1/+8
*
bpo-46431: improve error message on invalid calls to BaseExceptionGroup.__new...
Irit Katriel
2022-01-24
1
-1/+4
*
bpo-43683: Streamline YIELD_VALUE and SEND (GH-30723)
Mark Shannon
2022-01-24
1
-2/+4
*
bpo-46481: Implement vectorcall for weakref.ref.__call__ method. (GH-30820)
Dong-hee Na
2022-01-23
1
-50/+30
*
bpo-46406: Faster single digit int division. (#30626)
Gregory P. Smith
2022-01-23
1
-10/+26
*
bpo-46417: _PyList_Fini() clears indexerr (GH-30815)
Victor Stinner
2022-01-23
1
-2/+6
*
bpo-46417: Fix _PyStaticType_Dealloc() (GH-30810)
Victor Stinner
2022-01-22
1
-3/+11
*
bpo-46417: Clear Unicode static types at exit (GH-30806)
Victor Stinner
2022-01-22
4
-22/+23
*
bpo-46417: Py_Finalize() clears static exceptioins (GH-30805)
Victor Stinner
2022-01-22
1
-1/+26
*
bpo-46417: Factorize _PyExc_InitTypes() code (GH-30804)
Victor Stinner
2022-01-22
1
-170/+132
*
bpo-46417: _PyTypes_FiniTypes() clears object and type (GH-30798)
Victor Stinner
2022-01-22
1
-15/+11
*
bpo-46417: Cleanup typeobject.c code (GH-30795)
Victor Stinner
2022-01-22
1
-159/+164
*
bpo-46417: Clear more static types (GH-30796)
Victor Stinner
2022-01-22
1
-0/+15
*
bpo-46417: remove_subclass() clears tp_subclasses (GH-30793)
Victor Stinner
2022-01-22
1
-9/+15
*
bpo-46417: Fix race condition on setting type __bases__ (GH-30788)
Victor Stinner
2022-01-22
1
-11/+16
*
bpo-46417: Use _PyType_CAST() in Objects directory (GH-30764)
Victor Stinner
2022-01-21
9
-20/+13
*
bpo-46417: Add _PyType_GetSubclasses() function (GH-30761)
Victor Stinner
2022-01-21
1
-40/+60
*
bpo-46417: Add _PyType_CAST() macro (GH-30760)
Victor Stinner
2022-01-21
1
-57/+47
*
bpo-46417: Add missing types of _PyTypes_InitTypes() (GH-30749)
Victor Stinner
2022-01-21
3
-3/+11
*
bpo-46417: Revert remove_subclass() change (GH-30750)
Victor Stinner
2022-01-21
1
-4/+0
*
bpo-46417: Py_Finalize() clears static types (GH-30743)
Victor Stinner
2022-01-21
2
-85/+142
*
bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736)
Victor Stinner
2022-01-21
3
-2/+11
*
bpo-46417: Finalize structseq types at exit (GH-30645)
Victor Stinner
2022-01-21
4
-2/+70
*
bpo-46409: Make generators in bytecode (GH-30633)
Mark Shannon
2022-01-20
2
-24/+43
*
docs: correct outdated MappingProxyType docstrings (#30281)
Joshua Bronson
2022-01-19
1
-3/+3
*
bpo-42161: Hoist the _PyLong_GetOne() call out of the inner loop. (GH-30656)
Raymond Hettinger
2022-01-18
1
-2/+4
*
bpo-46361: Fix "small" `int` caching (GH-30583)
Brandt Bucher
2022-01-16
1
-1/+1
*
bpo-46020: Optimize long_pow for the common case (GH-30555)
Tim Peters
2022-01-12
1
-6/+13
*
bpo-45953: Statically allocate and initialize global bytes objects. (gh-30096)
Eric Snow
2022-01-11
1
-78/+14
*
bpo-46235: Do all ref-counting at once during list/tuple multiplication (GH-3...
Dennis Sweeney
2022-01-08
2
-26/+48
*
bpo-46006: Revert "bpo-40521: Per-interpreter interned strings (GH-20085)" (G...
Victor Stinner
2022-01-06
2
-19/+69
*
bpo-46236: Fix PyFunction_GetAnnotations() returned tuple. (GH-30409)
Inada Naoki
2022-01-05
1
-22/+33
*
bpo-46009: Remove GEN_START (GH-30367)
Brandt Bucher
2022-01-04
1
-3/+5
*
bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)
Irit Katriel
2022-01-04
1
-1/+0
[prev]
[next]