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
/
typeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-3
/
+3
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-3
/
+3
*
bpo-42423: Accept single base class in PyType_FromModuleAndSpec() (GH-23441)
Serhiy Storchaka
2020-11-22
1
-2
/
+3
*
bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec...
Serhiy Storchaka
2020-11-21
1
-5
/
+18
*
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
1
-8
/
+40
*
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...
Vladimir Matveev
2020-11-10
1
-0
/
+7
*
bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...
kj
2020-11-08
1
-12
/
+2
*
bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123)
Hai Shi
2020-11-06
1
-0
/
+4
*
Add _PyType_GetModuleByDef (GH-22835)
Petr Viktorin
2020-11-03
1
-0
/
+38
*
bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)
Serhiy Storchaka
2020-10-26
1
-71
/
+51
*
bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte...
Serhiy Storchaka
2020-10-26
1
-14
/
+26
*
bpo-41984: GC track all user classes (GH-22701)
Brandt Bucher
2020-10-14
1
-16
/
+6
*
bpo-41428: Implementation for PEP 604 (GH-21515)
Maggie Moss
2020-09-09
1
-2
/
+17
*
closes bpo-41689: Preserve text signature from tp_doc in C heap type creation...
Benjamin Peterson
2020-09-02
1
-3
/
+12
*
bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21822)
Victor Stinner
2020-08-11
1
-2
/
+2
*
bpo-41295: Reimplement the Carlo Verre "hackcheck" (GH-21528)
scoder
2020-07-18
1
-7
/
+20
*
bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp...
scoder
2020-07-02
1
-11
/
+30
*
bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901)
Victor Stinner
2020-06-16
1
-2
/
+2
*
bpo-40703: Let PyType_FromSpec() set "type.__module__" only if it is not set ...
scoder
2020-06-10
1
-15
/
+20
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
1
-1
/
+1
*
bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...
Pablo Galindo
2020-05-27
1
-93
/
+8
*
bpo-40521: Fix update_slot() when INTERN_NAME_STRINGS is not defined (#20246)
Victor Stinner
2020-05-20
1
-1
/
+10
*
bpo-39465: Don't access directly _Py_Identifier members (GH-20043)
Victor Stinner
2020-05-12
1
-7
/
+7
*
bpo-40584: Update PyType_FromModuleAndSpec() to process tp_vectorcall_offset ...
Hai Shi
2020-05-11
1
-2
/
+12
*
bpo-38787: C API for module state access from extension methods (PEP 573) (GH...
Petr Viktorin
2020-05-07
1
-4
/
+59
*
bpo-40521: Disable method cache in subinterpreters (GH-19960)
Victor Stinner
2020-05-06
1
-3
/
+19
*
bpo-40521: Disable Unicode caches in isolated subinterpreters (GH-19933)
Victor Stinner
2020-05-05
1
-0
/
+16
*
bpo-39573: Use Py_IS_TYPE to check for types (GH-19882)
Hai Shi
2020-05-04
1
-1
/
+1
*
bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)
Victor Stinner
2020-04-29
1
-4
/
+5
*
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-29
1
-2
/
+2
*
bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772)
Victor Stinner
2020-04-29
1
-5
/
+0
*
bpo-40421: Add PyFrame_GetCode() function (GH-19757)
Victor Stinner
2020-04-28
1
-2
/
+2
*
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
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-2
/
+2
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-1
/
+1
*
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....
Serhiy Storchaka
2020-04-11
1
-1
/
+1
*
bpo-39943: Keep constness of pointer objects. (19405)
Andy Lester
2020-04-09
1
-6
/
+5
*
bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378)
Victor Stinner
2020-04-08
1
-20
/
+27
*
bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377)
Victor Stinner
2020-04-06
1
-1
/
+1
*
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Dong-hee Na
2020-03-22
1
-0
/
+1
*
bpo-39904: Move handling of one-argument call of type() from type.__new__() t...
Serhiy Storchaka
2020-03-09
1
-39
/
+32
*
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
Andy Lester
2020-03-06
1
-3
/
+3
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
1
-4
/
+4
*
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na
2020-02-17
1
-1
/
+1
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-10
/
+10
*
bpo-39573: Add Py_SET_TYPE() function (GH-18394)
Victor Stinner
2020-02-07
1
-4
/
+6
*
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner
2020-02-07
1
-13
/
+13
[next]