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
/
typeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
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-08
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
*
|
|
Uniformize argument names of "call" functions
Victor Stinner
2016-12-06
1
-5/+5
*
|
|
Use directly _PyObject_GenericSetAttrWithDict()
Victor Stinner
2016-12-05
1
-1/+1
*
|
|
Issue #28858: Remove _PyObject_CallArg1() macro
Victor Stinner
2016-12-05
1
-3/+3
*
|
|
Merge #23722 from 3.6
Nick Coghlan
2016-12-05
1
-2/+9
|
\
\
\
|
|
/
/
|
*
|
Issue #23722: improve __classcell__ compatibility
Nick Coghlan
2016-12-05
1
-2/+9
*
|
|
Backed out changeset b9c9691c72c5
Victor Stinner
2016-12-04
1
-2/+4
*
|
|
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner
2016-12-01
1
-4/+2
*
|
|
Backed out changeset 7efddbf1aa70
Victor Stinner
2016-11-30
1
-9/+8
*
|
|
Uniformize argument names of "call" functions
Victor Stinner
2016-11-29
1
-8/+9
*
|
|
Issue #28797: Modifying the class __dict__ inside the __set_name__ method of
Serhiy Storchaka
2016-11-29
1
-3/+11
|
\
\
\
|
|
/
/
|
*
|
Issue #28797: Modifying the class __dict__ inside the __set_name__ method of
Serhiy Storchaka
2016-11-29
1
-3/+11
*
|
|
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka
2016-11-20
1
-2/+2
|
/
/
*
|
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
Serhiy Storchaka
2016-11-20
1
-3/+3
*
|
Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.
Serhiy Storchaka
2016-11-16
1
-6/+6
|
\
\
|
|
/
|
*
Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.
Serhiy Storchaka
2016-11-16
1
-6/+6
*
|
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-2/+2
|
\
\
|
|
/
|
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-2/+2
*
|
Issue #28385: An error message when non-empty format spec is passed to
Serhiy Storchaka
2016-10-30
1
-19/+9
|
\
\
|
|
/
|
*
Issue #28385: An error message when non-empty format spec is passed to
Serhiy Storchaka
2016-10-30
1
-19/+9
*
|
Issue #28214: Improved exception reporting for problematic __set_name__
Serhiy Storchaka
2016-10-21
1
-1/+6
*
|
Check return value of _PyDict_SetItemId()
Christian Heimes
2016-10-13
1
-1/+4
*
|
Issue #26906: Resolving special methods of uninitialized type now causes
Serhiy Storchaka
2016-10-08
1
-5/+19
|
\
\
|
|
/
|
*
Issue #26906: Resolving special methods of uninitialized type now causes
Serhiy Storchaka
2016-10-08
1
-5/+19
*
|
Issue #18287: PyType_Ready() now checks that tp_name is not NULL.
Serhiy Storchaka
2016-10-07
1
-0/+6
|
\
\
|
|
/
|
*
Issue #18287: PyType_Ready() now checks that tp_name is not NULL.
Serhiy Storchaka
2016-10-07
1
-0/+6
*
|
merge 3.5 (#26617)
Benjamin Peterson
2016-10-04
1
-12/+13
|
\
\
|
|
/
|
*
ensure gc tracking is off when invoking weakref callbacks (closes #26617)
Benjamin Peterson
2016-10-04
1
-12/+13
|
*
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Martin Panter
2016-09-07
1
-1/+1
*
|
Issue #28214: Now __set_name__ is looked up on the class instead of the
Serhiy Storchaka
2016-09-21
1
-5/+7
*
|
Issue #23722: Initialize __class__ from type.__new__()
Nick Coghlan
2016-09-11
1
-2/+11
*
|
Issue #25856: The __module__ attribute of extension classes and functions
Serhiy Storchaka
2016-09-09
1
-12/+15
*
|
remove unconvincing use of Py_LOCAL
Benjamin Peterson
2016-09-09
1
-6/+6
*
|
Issue #24254: Drop cls.__definition_order__.
Eric Snow
2016-09-08
1
-65/+1
*
|
Additional safe-guard against dereferencing NULL in reduce_newobj
Christian Heimes
2016-09-08
1
-1/+7
*
|
Avoid inefficient way to call functions without argument
Victor Stinner
2016-09-06
1
-4/+4
*
|
Issue #24254: Preserve class attribute definition order.
Eric Snow
2016-09-05
1
-1/+65
*
|
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Raymond Hettinger
2016-08-30
1
-1/+1
*
|
method_call() and slot_tp_new() now uses fast call
Victor Stinner
2016-08-24
1
-18/+5
*
|
Issue #27809: Use _PyObject_FastCallDict()
Victor Stinner
2016-08-22
1
-15/+13
*
|
Rename _PyObject_FastCall() to _PyObject_FastCallDict()
Victor Stinner
2016-08-22
1
-7/+7
*
|
Issue #27366: Fix init_subclass()
Victor Stinner
2016-08-20
1
-0/+5
[next]