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-32746: Fix multiple typos (GH-5144)
Leo Arias
2018-02-03
1
-1
/
+1
*
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...
Serhiy Storchaka
2018-01-25
1
-18
/
+9
*
bpo-32226: Make __class_getitem__ an automatic class method. (#5098)
Serhiy Storchaka
2018-01-05
1
-2
/
+15
*
Fix outdated comment in typeobject.c (GH-5090)
Berker Peksag
2018-01-04
1
-1
/
+1
*
bpo-32385: Clean up the C3 MRO algorithm implementation. (#4942)
Serhiy Storchaka
2017-12-20
1
-77
/
+64
*
bpo-32379: Faster MRO computation for single inheritance (#4932)
Antoine Pitrou
2017-12-20
1
-4
/
+36
*
bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...
Serhiy Storchaka
2017-12-15
1
-1
/
+1
*
bpo-32226: Implementation of PEP 560 (core components) (#4732)
Ivan Levkivskyi
2017-12-14
1
-0
/
+21
*
bpo-31506: Improve the error message logic for class instantiation (GH-4740)
Sanyam Khurana
2017-12-10
1
-3
/
+3
*
Replace KB unit with KiB (#4293)
Victor Stinner
2017-11-08
1
-1
/
+1
*
bpo-31336: Speed up type creation. (#3279)
scoder
2017-10-01
1
-52
/
+108
*
bpo-31506: Improve the error message logic for object.__new__ and object.__in...
Serhiy Storchaka
2017-09-20
1
-10
/
+21
*
bpo-31497: Add private helper _PyType_Name(). (#3630)
Serhiy Storchaka
2017-09-17
1
-9
/
+15
*
bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)
Eric Snow
2017-09-15
1
-3
/
+1
*
bpo-28411: Isolate PyInterpreterState.modules (#3575)
Eric Snow
2017-09-14
1
-2
/
+2
*
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
Eric Snow
2017-09-13
1
-1
/
+2
*
bpo-31393: Fix the use of PyUnicode_READY(). (#3451)
Serhiy Storchaka
2017-09-08
1
-3
/
+3
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-07
1
-5
/
+6
*
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
Eric Snow
2017-09-05
1
-5
/
+5
*
bpo-30860: Consolidate stateful runtime globals. (#2594)
Eric Snow
2017-09-05
1
-5
/
+5
*
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
Eric Snow
2017-09-04
1
-2
/
+1
*
bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)
Serhiy Storchaka
2017-07-03
1
-1
/
+1
*
bpo-30509: Clean up calling type slots. (#1883)
Serhiy Storchaka
2017-06-01
1
-68
/
+26
*
bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (#1652)
Serhiy Storchaka
2017-05-20
1
-6
/
+33
*
bpo-28974: `object.__format__(x, '')` is now equivalent to `str(x)` (#506)
Serhiy Storchaka
2017-05-13
1
-9
/
+1
*
fix a refleak in slot_sq_length (#1162)
Xiang Zhang
2017-04-17
1
-0
/
+1
*
bpo-29839: Raise ValueError rather than OverflowError in len() for negative v...
Serhiy Storchaka
2017-04-16
1
-6
/
+13
*
bpo-29838: Add asserts for checking results of sq_length and mq_length slots....
Serhiy Storchaka
2017-04-16
1
-1
/
+3
*
bpo-29914: Fix default implementations of __reduce__ and __reduce_ex__(). (#843)
Serhiy Storchaka
2017-04-08
1
-8
/
+5
*
bpo-29941: Assert fixes (#886)
T. Wouters
2017-03-31
1
-1
/
+1
*
bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ...
Serhiy Storchaka
2017-03-21
1
-6
/
+6
*
bpo-20185: Convert typeobject.c to Argument Clinic. (#544)
Serhiy Storchaka
2017-03-19
1
-76
/
+132
*
bpo-24329: allow __qualname__ and __classcell__ in __slots__ (GH-495)
Xiang Zhang
2017-03-08
1
-5
/
+11
*
bpo-29548: Fix some inefficient call API usage (GH-97)
INADA Naoki
2017-02-16
1
-1
/
+1
*
Optimize slots: avoid temporary PyMethodObject
Victor Stinner
2017-02-09
1
-58
/
+125
*
Issue #29383: reduce temporary interned unicode
INADA Naoki
2017-01-28
1
-3
/
+10
*
Issue #29358: Add postcondition checks on types
Victor Stinner
2017-01-25
1
-3
/
+24
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-24
/
+12
*
Rephrase !PyErr_Occurred() comment: may=>can
Victor Stinner
2017-01-18
1
-1
/
+1
*
type_prepare() now uses fast call (METH_FASTCALL)
Victor Stinner
2017-01-16
1
-2
/
+3
*
call_method() now uses _PyObject_FastCall()
Victor Stinner
2017-01-11
1
-39
/
+61
*
Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...
Serhiy Storchaka
2016-12-16
1
-8
/
+8
*
Merge from 3.6.
Serhiy Storchaka
2016-12-14
1
-28
/
+1
|
\
|
*
Merge from 3.6.
Serhiy Storchaka
2016-12-14
1
-28
/
+1
|
|
\
|
|
*
Revert changeset 1f31bf3f76f5 (issue5322) except tests.
Serhiy Storchaka
2016-12-14
1
-28
/
+1
*
|
|
Use _PyObject_FastCallVa() in type slots
Victor Stinner
2016-12-09
1
-81
/
+50
*
|
|
Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.
Serhiy Storchaka
2016-12-07
1
-1
/
+28
|
\
|
|
|
*
|
Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.
Serhiy Storchaka
2016-12-07
1
-1
/
+28
|
|
\
|
|
|
*
Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.
Serhiy Storchaka
2016-12-02
1
-1
/
+28
*
|
|
Use _PyObject_CallNoArg()
Victor Stinner
2016-12-06
1
-5
/
+5
[next]