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
*
bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)
Victor Stinner
2020-05-13
1
-3/+3
*
bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)
scoder
2020-05-12
1
-1/+1
*
bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing no...
Serhiy Storchaka
2020-05-12
1
-4/+22
*
bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...
Serhiy Storchaka
2020-05-12
1
-23/+41
*
bpo-39465: Don't access directly _Py_Identifier members (GH-20043)
Victor Stinner
2020-05-11
2
-8/+8
*
bpo-40584: Update PyType_FromModuleAndSpec() to process tp_vectorcall_offset ...
Hai Shi
2020-05-11
1
-2/+12
*
bpo-40575: Avoid unnecessary overhead in _PyDict_GetItemIdWithError() (GH-20018)
scoder
2020-05-11
1
-1/+3
*
Improve code clarity for the set lookup logic (GH-20028)
Raymond Hettinger
2020-05-10
1
-125/+55
*
bpo-37986: Improve perfomance of PyLong_FromDouble() (GH-15611)
Sergey Fedoseev
2020-05-10
2
-23/+17
*
bpo-40273: Reversible mappingproxy (FH-19513)
Zackery Spytz
2020-05-08
1
-0/+9
*
bpo-38787: C API for module state access from extension methods (PEP 573) (GH...
Petr Viktorin
2020-05-07
4
-12/+182
*
bpo-40521: Disable list free list in subinterpreters (GH-19959)
Victor Stinner
2020-05-06
1
-1/+8
*
bpo-40521: Disable method cache in subinterpreters (GH-19960)
Victor Stinner
2020-05-06
1
-3/+19
*
bpo-40523: Add pass-throughs for hash() and reversed() to weakref.proxy objec...
Pablo Galindo
2020-05-05
1
-1/+18
*
bpo-40521: Disable free lists in subinterpreters (GH-19937)
Victor Stinner
2020-05-05
3
-80/+162
*
bpo-40521: Disable Unicode caches in isolated subinterpreters (GH-19933)
Victor Stinner
2020-05-05
2
-15/+79
*
bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)
Victor Stinner
2020-05-05
2
-20/+34
*
bpo-40455: Remove gcc10 warning about x_digits (#19852)
Dong-hee Na
2020-05-04
1
-4/+3
*
bpo-39573: Use Py_IS_TYPE to check for types (GH-19882)
Hai Shi
2020-05-04
2
-3/+3
*
bpo-40408: Fix support of nested type variables in GenericAlias. (GH-19836)
Serhiy Storchaka
2020-05-04
1
-19/+104
*
Remove out-of-date comment (GH-19886)
Raymond Hettinger
2020-05-03
1
-2/+1
*
Simplify set entry insertion logic. (GH-19881)
Raymond Hettinger
2020-05-03
1
-16/+2
*
bpo-29587: allow chaining NULL exceptions in _gen_throw() (GH-19877)
Chris Jerdonek
2020-05-03
1
-4/+5
*
bpo-29587: Update gen.throw() to chain exceptions (#19823)
Chris Jerdonek
2020-05-02
1
-0/+9
*
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
[next]