index
:
delta/cpython.git
2.0
2.1
2.2
2.3
2.4
2.5
2.6
2.7
3.0
3.1
3.2
3.3
3.4
3.5
3.6
baserock/2.7.9-mips64
baserock/markdoffman/py2-symlink
baserock/markdoffman/py2-symlink-v2
baserock/morph-2.7
legacy-trunk
master
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Objects
/
object.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
Optimize ascii(str): don't encode/decode repr if repr is already ASCII
Victor Stinner
2013-04-14
1
-0
/
+3
*
|
initialize map/filter/zip in _PyBuiltin_Init rather than the catch-all function
Benjamin Peterson
2012-10-30
1
-9
/
+0
*
|
merge 3.3 (#16369)
Benjamin Peterson
2012-10-30
1
-0
/
+24
|
\
\
|
|
/
|
*
merge 3.2 (#16369)
Benjamin Peterson
2012-10-30
1
-236
/
+314
|
|
\
|
*
|
initialize more global type objects (closes #16369)
Benjamin Peterson
2012-10-30
1
-0
/
+24
|
*
|
Issue #13992: The trashcan mechanism is now thread-safe. This eliminates
Antoine Pitrou
2012-09-06
1
-0
/
+37
*
|
|
Added notimplemented_dealloc for better error reporting
Armin Ronacher
2012-10-06
1
-1
/
+10
|
|
/
|
/
|
*
|
Issue #13992: The trashcan mechanism is now thread-safe. This eliminates
Antoine Pitrou
2012-09-06
1
-0
/
+37
*
|
Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...
David Malcolm
2012-06-22
1
-0
/
+12
*
|
Eric Snow's implementation of PEP 421.
Barry Warsaw
2012-06-03
1
-0
/
+3
*
|
Implement PEP 412: Key-sharing dictionaries (closes #13903)
Benjamin Peterson
2012-04-23
1
-23
/
+4
*
|
merge 3.2 (#14509)
Benjamin Peterson
2012-04-09
1
-229
/
+311
|
\
\
|
|
/
|
/
|
|
*
Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t...
Antoine Pitrou
2012-04-05
1
-0
/
+13
|
*
Micro-optimize PyObject_GetAttrString()
Victor Stinner
2012-03-22
1
-1
/
+1
|
*
refactor and avoid warnings
Benjamin Peterson
2012-03-09
1
-7
/
+5
|
*
Issue #14211: _PyObject_GenericSetAttrWithDict() keeps a strong reference to
Victor Stinner
2012-03-09
1
-4
/
+5
|
*
- Issue #10181: New memoryview implementation fixes multiple ownership
Stefan Krah
2012-02-25
1
-0
/
+3
|
*
merge 3.2
Benjamin Peterson
2012-02-21
1
-217
/
+282
|
|
\
|
/
/
|
*
Merge 3.2: Issue #13703 plus some related test suite fixes.
Georg Brandl
2012-02-21
1
-217
/
+281
|
|
\
|
/
/
|
*
add generic implementation of a __dict__ descriptor for C types
Benjamin Peterson
2012-02-19
1
-0
/
+42
|
*
use the static identifier api for looking up special methods
Benjamin Peterson
2012-01-22
1
-4
/
+4
|
*
Consolidate the occurrances of the prime used as the multiplier when hashing.
Gregory P. Smith
2012-01-14
1
-1
/
+1
|
|
\
|
*
|
improve abstract property support (closes #11610)
Benjamin Peterson
2011-12-15
1
-0
/
+23
|
*
|
Fix PyObject_Repr(): don't call PyUnicode_READY() if res is NULL
Victor Stinner
2011-12-01
1
-1
/
+3
|
*
|
PyObject_Repr() ensures that the result is a ready Unicode string
Victor Stinner
2011-12-01
1
-0
/
+8
|
*
|
Issue #13411: memoryview objects are now hashable when the underlying object ...
Antoine Pitrou
2011-11-21
1
-0
/
+15
|
*
|
PyObject_Str() ensures that the result string is ready
Victor Stinner
2011-11-20
1
-0
/
+5
|
*
|
Make _PyUnicode_FromId return borrowed references.
Martin v. Löwis
2011-11-07
1
-6
/
+3
|
*
|
Add API for static strings, primarily good for identifiers.
Martin v. Löwis
2011-10-09
1
-0
/
+36
|
*
|
Implement PEP 393.
Martin v. Löwis
2011-09-28
1
-8
/
+2
|
*
|
merge 3.2
Benjamin Peterson
2011-09-01
1
-0
/
+3
|
|
\
\
|
|
|
/
|
*
|
Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.
Brian Curtin
2011-08-10
1
-2
/
+1
|
*
|
merge 3.2
Benjamin Peterson
2011-07-29
1
-3
/
+0
|
|
\
\
|
*
|
|
also make NotImplementedType callable
Benjamin Peterson
2011-07-29
1
-0
/
+35
|
*
|
|
make the types of None and Ellipsis callable
Benjamin Peterson
2011-07-29
1
-0
/
+34
|
*
|
|
Issue 12647: Add __bool__() method to the None object.
Raymond Hettinger
2011-07-28
1
-2
/
+44
|
*
|
|
quaint and completely out of date comment
Benjamin Peterson
2011-06-11
1
-3
/
+2
|
*
|
|
allow __dir__ to return any sequence
Benjamin Peterson
2011-06-11
1
-30
/
+15
|
*
|
|
move specialized dir implementations into __dir__ methods (closes #12166)
Benjamin Peterson
2011-05-24
1
-177
/
+18
|
*
|
|
merge 3.2
Benjamin Peterson
2011-05-23
1
-2
/
+0
|
|
\
\
\
|
|
*
|
|
Remove traces of division_warning left over from Python 2 (#10998)
Éric Araujo
2011-03-26
1
-2
/
+0
*
|
|
|
|
Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...
Georg Brandl
2012-02-20
1
-91
/
+117
|
\
\
\
\
\
|
|
|
_
|
_
|
/
|
|
/
|
|
|
|
*
|
|
|
make sure to initialize the method wrapper type
Benjamin Peterson
2011-09-01
1
-0
/
+3
|
|
|
_
|
/
|
|
/
|
|
|
*
|
|
remove duplicated type ready
Benjamin Peterson
2011-07-29
1
-3
/
+0
|
|
/
/
|
*
|
merge 3.1
Benjamin Peterson
2011-05-23
1
-88
/
+114
|
|
\
\
|
|
|
/
|
|
*
Merge branches/pep-0384.
Martin v. Löwis
2010-12-03
1
-1
/
+13
|
|
*
Remove redundant includes of headers that are already included by Python.h.
Georg Brandl
2010-11-30
1
-1
/
+0
|
|
*
follow up to #9778: define and use an unsigned hash type
Benjamin Peterson
2010-10-23
1
-4
/
+4
|
|
*
make hashes always the size of pointers; introduce Py_hash_t #9778
Benjamin Peterson
2010-10-17
1
-7
/
+7
|
|
*
Use locale encoding if Py_FileSystemDefaultEncoding is not set
Victor Stinner
2010-10-15
1
-4
/
+0
[prev]
[next]