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
*
Revert "bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19...
Victor Stinner
2020-04-30
1
-6/+0
*
bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811)
Chris Jerdonek
2020-04-30
1
-0/+6
*
bpo-40228: More robust frame.setlineno. (GH-19437)
Mark Shannon
2020-04-29
1
-312/+251
*
bpo-40421: Add PyFrame_GetBack() function (GH-19765)
Victor Stinner
2020-04-29
1
-0/+10
*
bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)
Victor Stinner
2020-04-29
1
-4/+5
*
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner
2020-04-29
7
-51/+25
*
bpo-40429: Refactor super_init() (GH-19776)
Victor Stinner
2020-04-29
1
-64/+85
*
bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773)
Victor Stinner
2020-04-28
2
-2/+3
*
bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772)
Victor Stinner
2020-04-28
3
-31/+36
*
bpo-40421: Add PyFrame_GetCode() function (GH-19757)
Victor Stinner
2020-04-28
2
-2/+9
*
bpo-40421: Add pyframe.h header file (GH-19755)
Victor Stinner
2020-04-28
1
-2/+5
*
bpo-40217: Clean code in PyType_FromSpec_Alloc and add NEWS entry (GH-19733)
Pablo Galindo
2020-04-27
1
-9/+17
*
bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpe...
Pablo Galindo
2020-04-27
1
-1/+83
*
Update ga_new to use _PyArg_CheckPositional and _PyArg_NoKwnames (GH-19679)
Dong-hee Na
2020-04-23
1
-4/+2
*
bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939)
sweeneyde
2020-04-22
6
-3/+434
*
bpo-40302: UTF-32 encoder SWAB4() macro use a|b rather than a+b (GH-19572)
Victor Stinner
2020-04-17
1
-1/+1
*
bpo-40302: Replace PY_INT64_T with int64_t (GH-19573)
Victor Stinner
2020-04-17
1
-1/+1
*
bpo-40302: Add pycore_byteswap.h header file (GH-19552)
Victor Stinner
2020-04-17
1
-16/+20
*
bpo-40268: Remove unused osdefs.h includes (GH-19532)
Victor Stinner
2020-04-15
1
-3/+5
*
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Victor Stinner
2020-04-15
11
-12/+3
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
21
-37/+36
*
bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464)
Hai Shi
2020-04-14
1
-2/+2
*
bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515)
Victor Stinner
2020-04-14
1
-0/+1
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
24
-34/+26
*
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner
2020-04-14
3
-9/+9
*
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
Victor Stinner
2020-04-14
4
-2/+6
*
bpo-39481: Make weakref and WeakSet generic (GH-19497)
Ethan Smith
2020-04-14
1
-1/+7
*
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
Victor Stinner
2020-04-13
4
-19/+15
*
bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...
Serhiy Storchaka
2020-04-12
5
-14/+15
*
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....
Serhiy Storchaka
2020-04-11
5
-141/+172
*
bpo-39481: PEP 585 for enumerate, AsyncGeneratorType, mmap (GH-19421)
Ethan Smith
2020-04-10
2
-0/+4
*
bpo-39943: Keep constness of pointer objects. (19405)
Andy Lester
2020-04-10
1
-6/+5
*
bpo-40170: Remove PyIndex_Check() macro (GH-19428)
Victor Stinner
2020-04-08
1
-2/+0
*
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner
2020-04-08
11
-27/+40
*
bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378)
Victor Stinner
2020-04-07
2
-25/+32
*
bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376)
Victor Stinner
2020-04-07
1
-0/+10
*
bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)
Victor Stinner
2020-04-07
3
-6/+7
*
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum
2020-04-07
7
-0/+520
*
bpo-37388: Don't check encoding/errors during finalization (GH-19409)
Victor Stinner
2020-04-07
1
-0/+6
*
bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377)
Victor Stinner
2020-04-06
3
-2/+11
*
bpo-37207: Use PEP 590 vectorcall to speed up dict() (GH-19280)
Dong-hee Na
2020-04-02
1
-0/+33
*
bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265)
Serhiy Storchaka
2020-04-01
1
-49/+46
*
bpo-37207: Use vectorcall for list() (GH-18928)
Petr Viktorin
2020-03-30
1
-0/+28
*
bpo-39943: Properly const the pointers in dictkeys_get_index (GH-19170)
Andy Lester
2020-03-26
1
-5/+5
*
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
Victor Stinner
2020-03-25
3
-27/+21
*
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Dong-hee Na
2020-03-22
1
-0/+1
*
bpo-37207: Use PEP 590 vectorcall to speed up frozenset() (GH-19053)
Dong-hee Na
2020-03-18
1
-18/+50
*
bpo-38373: Change list overallocating strategy. (GH-18952)
Serhiy Storchaka
2020-03-17
1
-6/+8
*
bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738)
Victor Stinner
2020-03-17
1
-23/+13
*
bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019)
Dong-hee Na
2020-03-16
1
-0/+23
[next]