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>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40170: Convert PyDescr_IsData() to static inline function (GH-24535)
HEAD
master
Erlend Egeberg Aasland
2021-02-16
1
-0
/
+5
*
bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)
Mark Shannon
2021-02-01
3
-101
/
+31
*
bpo-40455: Fix gcc10+ warning about writing into a section of offset 0 (GH-24...
Pablo Galindo
2021-01-30
1
-2
/
+2
*
bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356)
Victor Stinner
2021-01-29
2
-191
/
+288
*
bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...
Mark Shannon
2021-01-29
3
-80
/
+51
*
bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)
Victor Stinner
2021-01-27
2
-14
/
+39
*
bpo-42923: Dump extension modules on fatal error (GH-24207)
Victor Stinner
2021-01-18
1
-0
/
+13
*
bpo-42924: Fix incorrect copy in bytearray_repeat (GH-24208)
Tobias Holl
2021-01-13
1
-2
/
+4
*
bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)
Mark Shannon
2021-01-05
2
-8
/
+7
*
bpo-42814: Fix undefined behavior in Objects/genericaliasobject.c (GH-24073)
Zackery Spytz
2021-01-03
1
-1
/
+1
*
bpo-42195: Disallow isinstance/issubclass for subclasses of genericaliases in...
Ken Jin
2021-01-02
1
-1
/
+1
*
bpo-27794: Add `name` attribute to `property` class (GH-23967)
Yurii Karabas
2020-12-30
1
-4
/
+48
*
bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999)
Petr Viktorin
2020-12-29
1
-1
/
+2
*
Fix compiler warnings regarding loss of data (GH-23983)
Pablo Galindo
2020-12-29
1
-1
/
+1
*
bpo-42745: finalize_interp_types() calls _PyType_Fini() (GH-23953)
Victor Stinner
2020-12-26
2
-5
/
+6
*
bpo-40521: Per-interpreter interned strings (GH-20085)
Victor Stinner
2020-12-26
2
-83
/
+28
*
bpo-42745: Make the type cache per-interpreter (GH-23947)
Victor Stinner
2020-12-26
1
-80
/
+98
*
bpo-39465: Fix _PyUnicode_FromId() for subinterpreters (GH-20058)
Victor Stinner
2020-12-26
1
-23
/
+62
*
bpo-41559: Implement PEP 612 - Add ParamSpec and Concatenate to typing (#23702)
kj
2020-12-23
1
-14
/
+62
*
bpo-42195: Ensure consistency of Callable's __args__ in collections.abc and t...
kj
2020-12-13
2
-24
/
+42
*
bpo-42576: Raise TypeError when passing in keyword arguments to GenericAlias ...
kj
2020-12-05
1
-1
/
+1
*
bpo-42536: GC track recycled tuples (GH-23623)
Brandt Bucher
2020-12-04
3
-0
/
+26
*
bpo-42431: Fix outdated bytes comments (GH-23458)
Serhiy Storchaka
2020-12-03
5
-35
/
+21
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
13
-45
/
+45
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
11
-53
/
+53
*
bpo-42202: Store func annotations as a tuple (GH-23316)
Yurii Karabas
2020-11-25
1
-0
/
+19
*
bpo-40170: Hide impl detail of Py_TRASHCAN_BEGIN macro (GH-23235)
Hai Shi
2020-11-24
1
-0
/
+9
*
bpo-42435: Speed up comparison of bytes and bytearray object (GH--23461)
Serhiy Storchaka
2020-11-22
2
-33
/
+12
*
bpo-42423: Accept single base class in PyType_FromModuleAndSpec() (GH-23441)
Serhiy Storchaka
2020-11-22
2
-10
/
+4
*
bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446)
Serhiy Storchaka
2020-11-21
1
-1
/
+3
*
bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec...
Serhiy Storchaka
2020-11-21
1
-5
/
+18
*
bpo-40998: Address compiler warnings found by ubsan (GH-20929)
Christian Heimes
2020-11-18
1
-1
/
+5
*
bpo-42332: Add weakref slot to types.GenericAlias (GH-23250)
kj
2020-11-15
1
-0
/
+6
*
bpo-42246: Partial implementation of PEP 626. (GH-23113)
Mark Shannon
2020-11-12
4
-123
/
+435
*
bpo-40170: Fix PyType_Ready() refleak on static type (GH-23236)
Victor Stinner
2020-11-11
1
-2
/
+7
*
bpo-41073: PyType_GetSlot() can now accept static types. (GH-21931)
Hai Shi
2020-11-10
3
-97
/
+137
*
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...
Vladimir Matveev
2020-11-10
4
-31
/
+60
*
Fix typo in unicodeobject.c (GH-23180)
Ikko Ashimine
2020-11-09
1
-1
/
+1
*
bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...
kj
2020-11-08
3
-17
/
+23
*
bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123)
Hai Shi
2020-11-06
1
-0
/
+4
*
bpo-42262: Add Py_NewRef() and Py_XNewRef() (GH-23152)
Victor Stinner
2020-11-05
1
-0
/
+16
*
Add _PyType_GetModuleByDef (GH-22835)
Petr Viktorin
2020-11-03
1
-0
/
+38
*
bpo-42143: Ensure PyFunction_NewWithQualName() can't fail after creating the ...
Yonatan Goldschmidt
2020-10-29
1
-13
/
+16
*
bpo-42161: Remove private _PyLong_Zero and _PyLong_One (GH-23003)
Victor Stinner
2020-10-27
1
-18
/
+0
*
bpo-42099: Fix reference to ob_type in unionobject.c and ceval (GH-22829)
Neil Schemenauer
2020-10-27
1
-1
/
+1
*
bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995)
Victor Stinner
2020-10-27
7
-36
/
+61
*
bpo-42161: Add _PyLong_GetZero() and _PyLong_GetOne() (GH-22993)
Victor Stinner
2020-10-27
1
-23
/
+14
*
bpo-42157: unicodedata avoids references to UCD_Type (GH-22990)
Victor Stinner
2020-10-26
1
-2
/
+1
*
bpo-1635741: _PyUnicode_Name_CAPI moves to internal C API (GH-22713)
Victor Stinner
2020-10-26
1
-15
/
+16
*
bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)
Serhiy Storchaka
2020-10-26
2
-94
/
+73
[next]