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
*
[3.4] bpo-26617: Ensure gc tracking is off when invoking weakref callbacks. (...
Serhiy Storchaka
2017-07-22
1
-12/+13
*
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
Serhiy Storchaka
2015-11-25
1
-0/+3
*
Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now
Serhiy Storchaka
2015-11-12
1
-0/+12
*
Various minor typos in documentation and comments
Martin Panter
2015-10-07
1
-1/+1
*
prevent unacceptable bases from becoming bases through multiple inheritance (...
Benjamin Peterson
2015-10-07
1
-6/+6
*
Fixed indentation of Python examples in C comments.
Serhiy Storchaka
2015-06-10
1
-1/+1
*
Issue #22079: Deprecation warning now is issued in PyType_Ready() instead of
Serhiy Storchaka
2015-03-22
1
-5/+8
*
Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...
Antoine Pitrou
2015-03-10
1
-1/+1
*
Fix definition mismatch for type_is_subtype_base_chain.
Steve Dower
2015-02-06
1
-1/+1
*
fix many custom mro() edge cases and improve code quality (#22735)
Benjamin Peterson
2015-02-06
1
-253/+392
*
Issue #22079: PyType_Ready() now checks that statically allocated type has
Serhiy Storchaka
2015-01-28
1
-0/+14
*
Issue #21408: The default __ne__() now returns NotImplemented if __eq__()
Serhiy Storchaka
2015-01-26
1
-2/+7
*
remove tautological condition (closes #22954)
Benjamin Peterson
2014-11-27
1
-1/+1
*
Closes #22772: fix __ifloordiv__ and __itruediv__ docstring.
Georg Brandl
2014-10-31
1
-2/+2
*
Issue #21418: Fix a crash in the builtin function super() when called without
Victor Stinner
2014-05-12
1
-2/+9
*
Fix a typo in the docstring of nb_index.
Zachary Ware
2014-04-18
1
-1/+1
*
Fix a typo in the signature for object.__ge__
Zachary Ware
2014-04-18
1
-1/+1
*
correct the fix for #20637; allow slot descriptor inheritance to take place b...
Benjamin Peterson
2014-03-17
1
-9/+8
*
Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__
Yury Selivanov
2014-03-02
1
-2/+2
*
Issue #20637: Key-sharing now also works for instance dictionaries of subclas...
Antoine Pitrou
2014-02-23
1
-0/+3
*
look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251)
Benjamin Peterson
2014-02-16
1
-12/+6
*
Issue #20530: The signatures for slot builtins have been updated
Larry Hastings
2014-02-10
1
-42/+42
*
Issue #20530: Argument Clinic's signature format has been revised again.
Larry Hastings
2014-02-09
1
-78/+111
*
Issue #17162: Fix compilation, replace non-breaking space with an ASCII space
Victor Stinner
2014-02-04
1
-1/+1
*
Issue #17162: Add PyType_GetSlot.
Martin v. Löwis
2014-02-04
1
-0/+13
*
Issue #20326: Argument Clinic now uses a simple, unique signature to
Larry Hastings
2014-01-28
1
-77/+67
*
Issue #20189: Four additional builtin types (PyTypeObject,
Larry Hastings
2014-01-24
1
-72/+173
*
Silence expression result unused warnings with clang.
Christian Heimes
2013-12-04
1
-1/+1
*
Issue #19088: Merge with 3.3.
Alexandre Vassalotti
2013-11-30
1
-17/+20
|
\
|
*
Issue #19088: Fix incorrect caching of the copyreg module.
Alexandre Vassalotti
2013-11-30
1
-17/+20
*
|
Issue #17810: Fixed NULL check in _PyObject_GetItemsIter()
Christian Heimes
2013-11-23
1
-1/+1
*
|
Issue #17810: Implement PEP 3154, pickle protocol 4.
Antoine Pitrou
2013-11-23
1
-93/+373
*
|
Issue #19515: Remove identifiers duplicated in the same file.
Victor Stinner
2013-11-12
1
-1/+0
*
|
Issue #19512, #19515: remove shared identifiers, move identifiers where they
Victor Stinner
2013-11-07
1
-3/+4
*
|
Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.
Martin v. Löwis
2013-11-07
1
-8/+6
*
|
Issue #19512: add _PyUnicode_CompareWithId() function
Victor Stinner
2013-11-06
1
-11/+12
*
|
Issue #19512: type_abstractmethods() and type_set_abstractmethods() now use an
Victor Stinner
2013-11-06
1
-5/+10
*
|
Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses o...
Antoine Pitrou
2013-10-29
1
-59/+63
*
|
fix indent
Victor Stinner
2013-10-29
1
-4/+4
*
|
merge
Raymond Hettinger
2013-10-01
1
-4/+1
|
\
\
|
|
/
|
*
Issue #18594: Fix the fast path for collections.Counter().
Raymond Hettinger
2013-10-01
1
-4/+1
|
*
when arguments are cells clear the locals slot (backport of #17927)
Benjamin Peterson
2013-05-15
1
-0/+12
*
|
Restore changeset 5bd9db528aed (issue #18408)
Victor Stinner
2013-08-26
1
-0/+7
*
|
Back out 5bd9db528aed (issue #18408). It caused unsolved buildbot failures.
Antoine Pitrou
2013-08-23
1
-7/+0
*
|
Issue #18112: PEP 442 implementation (safe object finalization).
Antoine Pitrou
2013-07-30
1
-50/+47
*
|
Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, ...
Christian Heimes
2013-07-20
1
-1/+1
*
|
Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with an
Victor Stinner
2013-07-17
1
-0/+7
*
|
Issue #18408: Fix PyType_Ready(), handle _PyDict_SetItemId() failure
Victor Stinner
2013-07-17
1
-3/+7
*
|
Cleanup type_call() to ease debug
Victor Stinner
2013-07-16
1
-4/+6
*
|
Issue #18408: type_new() and PyType_FromSpecWithBases() now raise MemoryError
Victor Stinner
2013-07-15
1
-2/+6
[next]