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-41103: Resurrect the old buffer protocol. (GH-27437)
Inada Naoki
2021-07-29
1
-0/+79
*
bpo-42035: Add a PyType_GetName() to get type's short name. (GH-23903)
Hai Shi
2021-07-29
1
-0/+6
*
bpo-44657: Fix instancemethod_call to use PyInstanceMethod_GET_FUNCTION (GH-2...
Dong-hee Na
2021-07-28
1
-1/+1
*
bpo-34013: Move the Python 2 hints from the exception constructor to the pars...
Pablo Galindo Salgado
2021-07-27
1
-201/+0
*
bpo-44698: Fix undefined behaviour in complex exponentiation. (GH-27278)
T. Wouters
2021-07-26
1
-8/+15
*
bpo-44732: Rename types.Union to types.UnionType (#27342)
Hasan
2021-07-26
1
-3/+3
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
3
-233/+336
*
bpo-44717: improve AttributeError on circular imports of submodules (GH-27338)
Filipe Laíns
2021-07-24
1
-0/+30
*
bpo-44676: Serialize the union type using only public API (GH-27323)
Serhiy Storchaka
2021-07-24
1
-48/+0
*
bpo-44676: Fix reference leaks in union_reduce (GH-27332)
Pablo Galindo Salgado
2021-07-24
1
-1/+1
*
bpo-44731: Simplify the union type implementation (GH-27318)
Serhiy Storchaka
2021-07-24
1
-81/+7
*
Revert "bpo-44717: improve AttributeError on circular imports of submodules (...
Pablo Galindo Salgado
2021-07-24
1
-30/+0
*
bpo-44717: improve AttributeError on circular imports of submodules (GH-27299)
Filipe Laíns
2021-07-24
1
-0/+30
*
bpo-44720: Don't crash when calling weakref.proxy(not_an_iterator).__next__ (...
Dennis Sweeney
2021-07-24
1
-0/+6
*
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...
Petr Viktorin
2021-07-23
3
-30/+6
*
bpo-44676: Add ability to serialize types.Union (GH-27244)
Yurii Karabas
2021-07-23
1
-0/+51
*
bpo-44653: Support typing types in parameter substitution in the union type. ...
Serhiy Storchaka
2021-07-22
1
-13/+12
*
bpo-41972: Tweak fastsearch.h string search algorithms (GH-27091)
Dennis Sweeney
2021-07-19
1
-272/+331
*
bpo-44661: Update property_descr_set to use vectorcall if possible. (GH-27206)
Dong-hee Na
2021-07-19
1
-7/+18
*
bpo-44633: Fix parameter substitution of the union type with wrong types. (GH...
Serhiy Storchaka
2021-07-18
1
-16/+28
*
bpo-44654: Refactor and clean up the union type implementation (GH-27196)
Serhiy Storchaka
2021-07-17
5
-99/+55
*
Remove legacy opcache structs (GH-27164)
Ken Jin
2021-07-16
1
-1/+1
*
bpo-44652: Preserve natural order of args in the union type. (GH-27185)
Serhiy Storchaka
2021-07-16
1
-2/+2
*
bpo-44636: Collapse union of equal types (GH-27178)
Serhiy Storchaka
2021-07-16
1
-8/+16
*
bpo-44646: Fix the hash of the union type. (#27179)
Serhiy Storchaka
2021-07-16
1
-4/+6
*
bpo-44184: Apply GH-26274 to the non-GC-type branch of subtype_dealloc (GH-27...
T. Wouters
2021-07-15
1
-3/+11
*
bpo-42073: allow classmethod to wrap other classmethod-like descriptors (#27115)
Łukasz Langa
2021-07-15
1
-1/+1
*
bpo-44632: Fix support of TypeVar in the union type (GH-27139)
Serhiy Storchaka
2021-07-14
1
-1/+1
*
bpo-44635: Convert None to NoneType in the union type constructor (GH-27136)
Serhiy Storchaka
2021-07-14
1
-9/+7
*
bpo-44606: Fix __instancecheck__ and __subclasscheck__ for the union type. (G...
Serhiy Storchaka
2021-07-14
1
-4/+19
*
bpo-44207: Add an internal version number to function objects. (GH-27078)
Mark Shannon
2021-07-12
1
-1/+25
*
bpo-43908: Immutable types inherit vectorcall (GH-27001)
Erlend Egeberg Aasland
2021-07-08
1
-4/+4
*
bpo-43950: Add option to opt-out of PEP-657 (GH-27023)
Ammar Askar
2021-07-07
2
-35/+44
*
bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)
Gabriele N. Tornetta
2021-07-07
4
-61/+104
*
bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980)
Yurii Karabas
2021-07-06
2
-19/+84
*
bpo-44562: Use PyType_GenericAlloc in Py_GenericAlias (GH-27021)
Pablo Galindo
2021-07-05
1
-2/+2
*
bpo-43950: use 0-indexed column offsets for bytecode positions (GH-27011)
Batuhan Taskaya
2021-07-04
1
-11/+8
*
bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAli...
Ken Jin
2021-07-04
1
-3/+3
*
bpo-44553: Correct failure in tp_new for the union object (GH-27008)
Pablo Galindo
2021-07-03
1
-2/+2
*
bpo-44553 : Implement GC methods for types.Union (GH-26993)
Ken Jin
2021-07-03
1
-4/+17
*
bpo-43950: Add code.co_positions (PEP 657) (GH-26955)
Pablo Galindo
2021-07-02
2
-30/+271
*
bpo-43770: Cleanup _PyObject_GetMethod() (GH-26946)
Victor Stinner
2021-07-01
1
-21/+19
*
bpo-44531: Add _PyType_AllocNoTrack() function (GH-26947)
Victor Stinner
2021-07-01
3
-28/+49
*
bpo-44523: Remove the pass-through for hash() in weakref proxy objects (GH-26...
Pablo Galindo
2021-06-29
1
-16/+2
*
bpo-44531: Fix type_repr() if tp_name is NULL (GH-26948)
Victor Stinner
2021-06-29
1
-0/+6
*
bpo-44110: Improve string's __getitem__ error message (GH-26042)
Miguel Brito
2021-06-27
1
-1/+2
*
bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)
Guido van Rossum
2021-06-23
1
-7/+0
*
bpo-39947: Remove old private trashcan C API functions (GH-26869)
Victor Stinner
2021-06-23
1
-48/+8
*
bpo-43770: Cleanup PyModuleDef_Init() (GH-26879)
Victor Stinner
2021-06-23
1
-2/+1
*
bpo-44486: Make sure that modules always have a dictionary. (GH-26847)
Mark Shannon
2021-06-23
1
-41/+61
[prev]
[next]