GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194) (GH-2...
Miss Islington (bot)
2021-09-07
1
-7
/
+5
*
bpo-44963: Implement send() and throw() methods for anext_awaitable objects (...
Miss Islington (bot)
2021-09-07
1
-22
/
+96
*
bpo-45030: Fix integer overflow in __reduce__ of the range iterator (GH-28000)
Miss Islington (bot)
2021-09-04
1
-16
/
+18
*
bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938)
Miss Islington (bot)
2021-08-28
1
-1
/
+1
*
bpo-44954: Fix wrong result in float.fromhex corner case (GH-27834)
Miss Islington (bot)
2021-08-20
1
-2
/
+2
*
bpo-44698: Restore complex pow behaviour for small integral exponents (GH-277...
Miss Islington (bot)
2021-08-17
1
-21
/
+7
*
bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-...
Miss Islington (bot)
2021-08-11
1
-1
/
+5
*
bpo-44872: use new trashcan macros in framobject.c (GH-27683) (GH-27690)
Irit Katriel
2021-08-10
1
-2
/
+2
*
bpo-44662: Add ability to annotate types.Union (GH-27214) (GH-27461)
Miss Islington (bot)
2021-07-30
1
-1
/
+23
*
bpo-44707: Fix an undefined behavior of the null pointer arithmetic (GH-27292...
Miss Islington (bot)
2021-07-29
1
-2
/
+9
*
bpo-41103: Resurrect the old buffer protocol. (GH-27437) (GH-27441)
Miss Islington (bot)
2021-07-29
1
-0
/
+79
*
bpo-44657: Fix instancemethod_call to use PyInstanceMethod_GET_FUNCTION (GH-2...
Miss Islington (bot)
2021-07-28
1
-1
/
+1
*
bpo-34013: Move the Python 2 hints from the exception constructor to the pars...
Miss Islington (bot)
2021-07-27
1
-201
/
+0
*
bpo-44698: Fix undefined behaviour in complex exponentiation. (GH-27278) (#27...
Miss Islington (bot)
2021-07-26
1
-8
/
+15
*
bpo-44732: Rename types.Union to types.UnionType (GH-27342)
Miss Islington (bot)
2021-07-26
1
-3
/
+3
*
bpo-44676: Serialize the union type using only public API (GH-27323) (GH-27340)
Miss Islington (bot)
2021-07-24
1
-48
/
+0
*
bpo-44731: Simplify the union type implementation (GH-27318) (GH-27334)
Ken Jin
2021-07-24
1
-81
/
+7
*
[3.10] bpo-44676: Add ability to serialize types.Union (GH-27244) (GH-27333)
Pablo Galindo Salgado
2021-07-24
1
-0
/
+51
*
bpo-44720: Don't crash when calling weakref.proxy(not_an_iterator).__next__ (...
Miss Islington (bot)
2021-07-24
1
-0
/
+6
*
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...
Miss Islington (bot)
2021-07-23
3
-30
/
+6
*
bpo-44653: Support typing types in parameter substitution in the union type. ...
Miss Islington (bot)
2021-07-23
1
-13
/
+12
*
bpo-44633: Fix parameter substitution of the union type with wrong types. (GH...
Miss Islington (bot)
2021-07-18
1
-16
/
+28
*
[3.10] bpo-44654: Refactor and clean up the union type implementation (GH-271...
Miss Islington (bot)
2021-07-18
5
-99
/
+55
*
[3.10] bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980...
Serhiy Storchaka
2021-07-17
2
-19
/
+84
*
[3.10] bpo-44652: Preserve natural order of args in the union type. (GH-27185...
Serhiy Storchaka
2021-07-16
1
-2
/
+2
*
[3.10] bpo-44636: Collapse union of equal types (GH-27178) (GH-27181)
Serhiy Storchaka
2021-07-16
1
-8
/
+16
*
bpo-44646: Fix the hash of the union type. (GH-27179) (#27180)
Miss Islington (bot)
2021-07-16
1
-4
/
+6
*
bpo-44184: Apply GH-26274 to the non-GC-type branch of subtype_dealloc (GH-27...
Miss Islington (bot)
2021-07-16
1
-3
/
+11
*
bpo-42073: allow classmethod to wrap other classmethod-like descriptors (GH-2...
Miss Islington (bot)
2021-07-15
1
-1
/
+1
*
bpo-44632: Fix support of TypeVar in the union type (GH-27139) (GH-27143)
Miss Islington (bot)
2021-07-15
1
-1
/
+1
*
[3.10] bpo-44635: Convert None to NoneType in the union type constructor (GH-...
Serhiy Storchaka
2021-07-15
1
-9
/
+7
*
bpo-44606: Fix __instancecheck__ and __subclasscheck__ for the union type. (G...
Miss Islington (bot)
2021-07-13
1
-4
/
+19
*
bpo-44562: Use PyType_GenericAlloc in Py_GenericAlias (GH-27021)
Miss Islington (bot)
2021-07-05
1
-2
/
+2
*
bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAli...
Miss Islington (bot)
2021-07-04
1
-3
/
+3
*
bpo-44553: Correct failure in tp_new for the union object (GH-27008) (GH-27009)
Miss Islington (bot)
2021-07-03
1
-2
/
+2
*
bpo-44553 : Implement GC methods for types.Union (GH-26993)
Miss Islington (bot)
2021-07-03
1
-4
/
+17
*
bpo-44523: Remove the pass-through for hash() in weakref proxy objects (GH-26...
Miss Islington (bot)
2021-06-29
1
-16
/
+2
*
bpo-44483: Fix crash in union object with bad ``__module__`` (GH-26848) (GH-2...
Miss Islington (bot)
2021-06-23
1
-3
/
+14
*
[3.10] Fix a potential reference-counting bug in long_pow (GH-26690) (GH-26703)
Mark Dickinson
2021-06-13
1
-0
/
+1
*
[3.10] Add more const modifiers. (GH-26691). (GH-26692)
Serhiy Storchaka
2021-06-12
2
-4
/
+4
*
bpo-44232: Fix type_new() error reporting (GH-26359) (GH-26365)
Miss Islington (bot)
2021-05-26
1
-0
/
+4
*
bpo-44184: Fix subtype_dealloc() for freed type (GH-26274) (GH-26290)
Miss Islington (bot)
2021-05-22
1
-2
/
+9
*
bpo-44114: Remove redundant cast. (GH-26098)
Miss Islington (bot)
2021-05-13
1
-2
/
+2
*
bpo-44114: Fix dictkeys_reversed and dictvalues_reversed function signatures ...
Miss Islington (bot)
2021-05-13
1
-4
/
+4
*
bpo-43916: Move the _PyStructSequence_InitType function to the internal API (...
Pablo Galindo
2021-05-03
1
-0
/
+1
*
bpo-43977: Make sure that tp_flags for pattern matching are inherited correct...
Mark Shannon
2021-05-03
1
-6
/
+12
*
bpo-43901: Fix refleaks in test_module (GH-25754)
Pablo Galindo
2021-04-30
1
-4
/
+11
*
bpo-43908: check_set_special_type_attr() checks Py_TPFLAGS_IMMUTABLETYPE (GH-...
Erlend Egeberg Aasland
2021-04-30
1
-7
/
+11
*
bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)
Jakub KulĂk
2021-04-30
1
-0
/
+40
*
bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749)
Victor Stinner
2021-04-30
1
-27
/
+4
[next]