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
/
object.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
Issue #18408: Fix Py_ReprEnter(), handle PyList_Append() failure
Victor Stinner
2013-07-17
1
-1/+2
*
|
Issue #18408: Py_ReprLeave() now saves/restores the current exception,
Victor Stinner
2013-07-16
1
-2/+11
*
|
Issue #3329: Implement the PEP 445
Victor Stinner
2013-07-07
1
-20/+0
*
|
Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory ...
Victor Stinner
2013-06-15
1
-0/+20
*
|
Issue #3329: Add new APIs to customize memory allocators
Victor Stinner
2013-06-14
1
-20/+0
*
|
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-31
1
-9/+0
*
|
merge 3.3 (#16369)
Benjamin Peterson
2012-10-31
1
-0/+24
|
\
\
|
|
/
|
*
merge 3.2 (#16369)
Benjamin Peterson
2012-10-31
1
-0/+24
|
|
\
|
|
*
initialize more global type objects (closes #16369)
Benjamin Peterson
2012-10-31
1
-0/+24
|
|
*
Issue #13992: The trashcan mechanism is now thread-safe. This eliminates
Antoine Pitrou
2012-09-05
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-05
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
-0/+2
|
\
\
|
|
/
*
|
Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t...
Antoine Pitrou
2012-04-04
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-08
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
-0/+1
|
\
\
|
|
/
*
|
Merge 3.2: Issue #13703 plus some related test suite fixes.
Georg Brandl
2012-02-20
1
-1/+12
|
\
\
|
|
/
|
*
Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...
Georg Brandl
2012-02-20
1
-0/+2
|
|
\
|
|
*
Issue #13703: add a way to randomize the hash values of basic types (str, byt...
Georg Brandl
2012-02-20
1
-0/+2
*
|
|
add generic implementation of a __dict__ descriptor for C types
Benjamin Peterson
2012-02-20
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
|
\
\
\
|
|
/
/
|
*
|
make sure to initialize the method wrapper type
Benjamin Peterson
2011-09-01
1
-0/+3
*
|
|
Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.
Brian Curtin
2011-08-11
1
-2/+1
*
|
|
merge 3.2
Benjamin Peterson
2011-07-30
1
-3/+0
|
\
\
\
|
|
/
/
|
*
|
remove duplicated type ready
Benjamin Peterson
2011-07-30
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
-5/+6
|
\
\
\
|
|
/
/
|
*
|
merge 3.1
Benjamin Peterson
2011-05-23
1
-5/+6
|
|
\
\
|
|
|
/
[prev]
[next]