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-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec...
Miss Islington (bot)
2020-11-21
1
-5/+18
*
bpo-40998: Address compiler warnings found by ubsan (GH-20929)
Miss Islington (bot)
2020-11-18
1
-1/+5
*
[3.9] bpo-42332: Add weakref slot to types.GenericAlias (GH-23250) (GH-23309)
kj
2020-11-17
1
-0/+6
*
Fix typo in unicodeobject.c (GH-23180)
Miss Islington (bot)
2020-11-10
1
-1/+1
*
bpo-42143: Ensure PyFunction_NewWithQualName() can't fail after creating the ...
Miss Skeleton (bot)
2020-10-29
1
-13/+16
*
bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH...
Miss Skeleton (bot)
2020-10-18
1
-1/+1
*
bpo-41984: GC track all user classes (GH-22701/GH-22702)
Miss Skeleton (bot)
2020-10-15
1
-16/+6
*
bpo-42015: Reorder dereferencing calls in meth_dealloc, to make sure m_self i...
Miss Skeleton (bot)
2020-10-12
1
-2/+4
*
Fix the attribute names in the docstring of GenericAlias (GH-22594)
Miss Skeleton (bot)
2020-10-08
1
-1/+1
*
[3.9] bpo-41909: Enable previously disabled recursion checks. (GH-22536) (GH-...
Serhiy Storchaka
2020-10-04
2
-4/+0
*
bpo-41780: Fix __dir__ of types.GenericAlias (GH-22262)
Miss Islington (bot)
2020-09-15
1
-0/+39
*
bpo-29590: fix stack trace for gen.throw() with yield from (GH-19896)
Miss Islington (bot)
2020-09-04
1
-0/+10
*
[3.9] bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH...
Pablo Galindo
2020-09-01
1
-2/+12
*
bpo-41295: Reimplement the Carlo Verre "hackcheck" (GH-21528)
Miss Islington (bot)
2020-07-18
1
-7/+20
*
bpo-41175: Guard against a NULL pointer dereference within bytearrayobject (G...
Miss Islington (bot)
2020-07-10
1
-1/+3
*
bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp...
Miss Islington (bot)
2020-07-03
1
-11/+30
*
bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (G...
Miss Islington (bot)
2020-06-22
1
-1/+3
*
bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878)
Inada Naoki
2020-06-18
1
-0/+23
*
bpo-40703: Let PyType_FromSpec() set "type.__module__" only if it is not set ...
Miss Islington (bot)
2020-06-10
1
-15/+20
*
bpo-40724: Support setting buffer slots from type specs (GH-20648) (GH-20683)
Miss Islington (bot)
2020-06-07
1
-2/+2
*
bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...
Miss Islington (bot)
2020-05-28
2
-93/+11
*
Remove spurious NULL in descrobject.c (GH-20344)
Miss Islington (bot)
2020-05-24
1
-1/+0
*
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
Miss Islington (bot)
2020-05-22
1
-4/+6
*
[3.9] bpo-40514: Remove --with-experimental-isolated-subinterpreters in 3.9 (...
Victor Stinner
2020-05-19
6
-40/+4
*
Use _PyErr_ChainStackItem() inside gen_send_ex(). (GH-20173) (#20202)
Miss Islington (bot)
2020-05-19
1
-10/+2
*
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek
2020-05-18
1
-17/+3
*
bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-1...
Zackery Spytz
2020-05-16
1
-2/+0
*
bpo-40521: Add PyInterpreterState.unicode (GH-20081)
Victor Stinner
2020-05-13
1
-31/+33
*
bpo-29587: Make gen.throw() chain exceptions with yield from (GH-19858)
Chris Jerdonek
2020-05-13
1
-10/+12
*
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
[next]