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
*
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
*
|
Issue #18408: pmerge() help of mro_implementation() now raises MemoryError on
Victor Stinner
2013-07-11
1
-2/+4
*
|
Issue #18408: slot_tp_str() must not fallback on slot_tp_repr() on error
Victor Stinner
2013-07-11
1
-19/+2
*
|
typeobject.c: remove trailing spaces
Victor Stinner
2013-07-11
1
-3/+3
*
|
Issue #18408: Fix PyType_Ready() and type.__bases__ setter to handle
Victor Stinner
2013-07-08
1
-0/+2
*
|
when an argument is a cell, set the local copy to NULL (see #17927)
Benjamin Peterson
2013-05-12
1
-3/+11
*
|
#17927: Keep frame from referencing cell-ified arguments.
Guido van Rossum
2013-05-10
1
-0/+4
*
|
Issue #17408: Avoid using an obsolete instance of the copyreg module when the...
Antoine Pitrou
2013-05-04
1
-5/+17
|
\
\
|
|
/
|
*
Issue #17408: Avoid using an obsolete instance of the copyreg module when the...
Antoine Pitrou
2013-05-04
1
-5/+17
*
|
Issue #16447: Merge fix from 3.3.
Mark Dickinson
2013-04-13
1
-1/+4
|
\
\
|
|
/
|
*
Issue #16447: Fix potential segfault when setting __name__ on a class.
Mark Dickinson
2013-04-13
1
-1/+4
*
|
merge 3.3 (#17610)
Benjamin Peterson
2013-04-01
1
-112/+99
|
\
\
|
|
/
|
*
list slotdefs in offset order rather than sorting them (closes #17610)
Benjamin Peterson
2013-04-01
1
-112/+99
*
|
Merge: #7963: fix error message when 'object' called with arguments.
R David Murray
2013-02-19
1
-1/+1
|
\
\
|
|
/
|
*
#7963: fix error message when 'object' called with arguments.
R David Murray
2013-02-19
1
-1/+1
|
|
\
|
|
*
#7963: fix error message when 'object' called with arguments.
R David Murray
2013-02-19
1
-2/+2
*
|
|
Issue #15422: get rid of PyCFunction_New macro
Andrew Svetlov
2012-12-25
1
-2/+2
*
|
|
Issue #9856: Replace deprecation warinigs to raising TypeError in object.__fo...
Andrew Svetlov
2012-12-23
1
-13/+4
*
|
|
merge 3.3
Benjamin Peterson
2012-10-31
1
-5/+6
|
\
\
\
|
|
/
/
|
*
|
do safety checks on __qualname__ assignment
Benjamin Peterson
2012-10-31
1
-0/+2
|
*
|
don't shadow the __qualname__ descriptor with __qualname__ in the class's __d...
Benjamin Peterson
2012-10-31
1
-5/+4
*
|
|
Issue #16086: PyTypeObject.tp_flags and PyType_Spec.flags are now unsigned
Victor Stinner
2012-10-30
1
-1/+1
|
/
/
*
|
Silence compiler warnings on Solaris 10 via explicit (void *) casts.
Trent Nelson
2012-09-19
1
-3/+3
|
\
\
|
|
/
|
*
Silence compiler warnings on Solaris 10 via explicit (void *) casts.
Trent Nelson
2012-09-19
1
-3/+3
*
|
Fixed memory leak in error branch of object_repr which may leak a reference t...
Christian Heimes
2012-09-10
1
-1/+3
|
\
\
|
|
/
|
*
Fixed memory leak in error branch of object_repr which may leak a reference t...
Christian Heimes
2012-09-10
1
-1/+3
*
|
Fixed possible reference leak to mod when type_name() returns NULL
Christian Heimes
2012-09-10
1
-1/+3
|
\
\
|
|
/
|
*
Fixed possible reference leak to mod when type_name() returns NULL
Christian Heimes
2012-09-10
1
-1/+3
[next]