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
*
decref cached keys on type deallocation (#13903)
Benjamin Peterson
2012-04-27
1
-3/+5
*
Account for shared keys in type's __sizeof__ (#13903).
Martin v. Loewis
2012-04-24
1
-0/+18
*
merge 3.2 (#14658)
Benjamin Peterson
2012-04-24
1
-2/+3
|
\
|
*
don't use a slot wrapper from a different special method (closes #14658)
Benjamin Peterson
2012-04-24
1
-2/+3
*
|
Implement PEP 412: Key-sharing dictionaries (closes #13903)
Benjamin Peterson
2012-04-23
1
-1/+16
*
|
merge 3.2
Benjamin Peterson
2012-04-01
1
-13/+9
|
\
\
|
|
/
|
*
adjust formatting
Benjamin Peterson
2012-04-01
1
-5/+5
|
*
remove extraneous condition
Benjamin Peterson
2012-04-01
1
-6/+4
|
*
be consistent with rest of function
Benjamin Peterson
2012-04-01
1
-2/+1
*
|
Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions
Victor Stinner
2012-03-26
1
-118/+85
*
|
make extra arguments to object.__init__/__new__ to errors in most cases (fini...
Benjamin Peterson
2012-03-17
1
-35/+10
*
|
simply this slightly
Benjamin Peterson
2012-03-17
1
-9/+6
*
|
merge 3.2 (#14334)
Benjamin Peterson
2012-03-16
1
-0/+7
|
\
\
|
|
/
|
*
check to make sure the attribute is a string (#14334)
Benjamin Peterson
2012-03-16
1
-0/+7
*
|
Close #14199: _PyType_Lookup() and super_getattro() keep a strong reference to
Victor Stinner
2012-03-08
1
-0/+9
*
|
merge 3.2 (#3787e896dbe9)
Benjamin Peterson
2012-03-08
1
-2/+7
|
\
\
|
|
/
|
*
allow cycles throught the __dict__ slot to be cleared (closes #1469629)
Benjamin Peterson
2012-03-08
1
-2/+7
*
|
Close #14095: type.__new__() doesn't remove __qualname__ key from the class
Victor Stinner
2012-02-25
1
-85/+70
*
|
check for NULL to fix segfault
Benjamin Peterson
2012-02-20
1
-1/+1
*
|
add generic implementation of a __dict__ descriptor for C types
Benjamin Peterson
2012-02-20
1
-18/+4
*
|
merge 3.2 (closes #13908)
Benjamin Peterson
2012-01-30
1
-1/+5
|
\
\
|
|
/
|
*
ready types returned from PyType_FromSpec
Benjamin Peterson
2012-01-30
1
-0/+3
|
*
adjust declaration
Benjamin Peterson
2012-01-30
1
-1/+2
*
|
use the static identifier api for looking up special methods
Benjamin Peterson
2012-01-22
1
-98/+88
*
|
Issue #13577: Built-in methods and functions now have a __qualname__.
Antoine Pitrou
2011-12-23
1
-1/+1
*
|
Fix the fix for issue #12149: it was incorrect, although it had the side
Antoine Pitrou
2011-12-15
1
-8/+10
|
\
\
|
|
/
|
*
Fix the fix for issue #12149: it was incorrect, although it had the side
Antoine Pitrou
2011-12-15
1
-8/+10
*
|
Issue #13575: there is only one class type.
Florent Xicluna
2011-12-12
1
-19/+12
*
|
PEP 3155 / issue #13448: Qualified name for classes and functions.
Antoine Pitrou
2011-11-25
1
-3/+53
*
|
Issue #13161: fix doc strings of __i*__ operators. Closes #13161
Eli Bendersky
2011-11-11
1
-10/+10
|
\
\
|
|
/
|
*
Issue #13161: fix doc strings of __i*__ operators
Eli Bendersky
2011-11-11
1
-10/+10
*
|
Make _PyUnicode_FromId return borrowed references.
Martin v. Löwis
2011-11-07
1
-2/+1
*
|
Merge issue 1294232 patch from 3.2
Nick Coghlan
2011-10-23
1
-20/+41
|
\
\
|
|
/
|
*
Issue 1294232: Fix errors in metaclass calculation affecting some cases of me...
Nick Coghlan
2011-10-23
1
-20/+41
*
|
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis
2011-10-14
1
-7/+7
*
|
Use GetAttrId directly. Proposed by Amaury.
Martin v. Löwis
2011-10-13
1
-8/+1
*
|
Use identifier API for PyObject_GetAttrString.
Martin v. Löwis
2011-10-10
1
-17/+20
*
|
Add API for static strings, primarily good for identifiers.
Martin v. Löwis
2011-10-09
1
-3/+6
*
|
Use the new Py_ARRAY_LENGTH macro
Victor Stinner
2011-09-28
1
-2/+2
*
|
Clean up a few tabs that went in with PEP393.
Ezio Melotti
2011-09-28
1
-8/+8
*
|
Implement PEP 393.
Martin v. Löwis
2011-09-28
1
-5/+13
*
|
make __doc__ mutable on heaptypes (closes #12773)
Benjamin Peterson
2011-08-17
1
-1/+10
*
|
factor out common checks for setting special type attributes
Benjamin Peterson
2011-08-17
1
-27/+19
*
|
crush other possible refleaks in this section
Benjamin Peterson
2011-08-17
1
-0/+1
*
|
merge 3.2
Benjamin Peterson
2011-08-17
1
-1/+3
|
\
\
|
|
/
|
*
fix possible refleaks
Benjamin Peterson
2011-08-17
1
-1/+3
*
|
complain when a class variable shadows a name in __slots__ (closes #12766)
Benjamin Peterson
2011-08-16
1
-0/+6
*
|
Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.
Brian Curtin
2011-08-11
1
-12/+6
*
|
Issue #11603: Fix a crash when __str__ is rebound as __repr__.
Antoine Pitrou
2011-07-15
1
-1/+1
|
\
\
|
|
/
|
*
Issue #11603: Fix a crash when __str__ is rebound as __repr__.
Antoine Pitrou
2011-07-15
1
-1/+1
|
|
\
[next]