summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* refactor and avoid warningsBenjamin Peterson2012-03-091-7/+5
* Issue #14211: _PyObject_GenericSetAttrWithDict() keeps a strong reference toVictor Stinner2012-03-081-4/+5
* - Issue #10181: New memoryview implementation fixes multiple ownershipStefan Krah2012-02-251-0/+3
* merge 3.2Benjamin Peterson2012-02-211-0/+1
|\
* \ Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-1/+12
|\ \ | |/
| * Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-0/+2
| |\
| | * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-201-0/+2
* | | add generic implementation of a __dict__ descriptor for C typesBenjamin Peterson2012-02-201-0/+42
* | | use the static identifier api for looking up special methodsBenjamin Peterson2012-01-221-4/+4
* | | Consolidate the occurrances of the prime used as the multiplier when hashing.Gregory P. Smith2012-01-141-1/+1
|\ \ \ | |/ /
* | | improve abstract property support (closes #11610)Benjamin Peterson2011-12-151-0/+23
* | | Fix PyObject_Repr(): don't call PyUnicode_READY() if res is NULLVictor Stinner2011-12-011-1/+3
* | | PyObject_Repr() ensures that the result is a ready Unicode stringVictor Stinner2011-12-011-0/+8
* | | Issue #13411: memoryview objects are now hashable when the underlying object ...Antoine Pitrou2011-11-211-0/+15
* | | PyObject_Str() ensures that the result string is readyVictor Stinner2011-11-201-0/+5
* | | Make _PyUnicode_FromId return borrowed references.Martin v. Löwis2011-11-071-6/+3
* | | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-0/+36
* | | Implement PEP 393.Martin v. Löwis2011-09-281-8/+2
* | | merge 3.2Benjamin Peterson2011-09-011-0/+3
|\ \ \ | |/ /
| * | make sure to initialize the method wrapper typeBenjamin Peterson2011-09-011-0/+3
* | | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-111-2/+1
* | | merge 3.2Benjamin Peterson2011-07-301-3/+0
|\ \ \ | |/ /
| * | remove duplicated type readyBenjamin Peterson2011-07-301-3/+0
* | | also make NotImplementedType callableBenjamin Peterson2011-07-291-0/+35
* | | make the types of None and Ellipsis callableBenjamin Peterson2011-07-291-0/+34
* | | Issue 12647: Add __bool__() method to the None object.Raymond Hettinger2011-07-281-2/+44
* | | quaint and completely out of date commentBenjamin Peterson2011-06-111-3/+2
* | | allow __dir__ to return any sequenceBenjamin Peterson2011-06-111-30/+15
* | | move specialized dir implementations into __dir__ methods (closes #12166)Benjamin Peterson2011-05-241-177/+18
* | | merge 3.2Benjamin Peterson2011-05-231-5/+6
|\ \ \ | |/ /
| * | merge 3.1Benjamin Peterson2011-05-231-5/+6
| |\ \ | | |/
| | * correctly lookup __dir__Benjamin Peterson2011-05-231-5/+6
| | * Merged revisions 84717 via svnmerge fromBenjamin Peterson2010-09-111-6/+6
| | * Merged revisions 84344 via svnmerge fromAntoine Pitrou2010-08-281-48/+65
| | * Merged revisions 83184 via svnmerge fromAntoine Pitrou2010-07-271-13/+2
| | * Merged revisions 81250-81253 via svnmerge fromVictor Stinner2010-05-171-1/+4
| | * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-1221/+1221
| | * Merged revisions 78876 via svnmerge fromVictor Stinner2010-03-211-5/+12
| | * Merged revisions 76663 via svnmerge fromMark Dickinson2009-12-041-1/+1
| | * Merged revisions 74459 via svnmerge fromBenjamin Peterson2009-08-151-3/+5
* | | Remove traces of division_warning left over from Python 2 (#10998)Éric Araujo2011-03-261-2/+0
|/ /
* | Merge branches/pep-0384.Martin v. Löwis2010-12-031-1/+13
* | Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* | follow up to #9778: define and use an unsigned hash typeBenjamin Peterson2010-10-231-4/+4
* | make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-7/+7
* | Use locale encoding if Py_FileSystemDefaultEncoding is not setVictor Stinner2010-10-151-4/+0
* | Issue #9630: Redecode filenames when setting the filesystem encodingVictor Stinner2010-09-291-0/+4
* | fix formattingBenjamin Peterson2010-09-111-6/+6
* | Issue #1868: Eliminate subtle timing issues in thread-local objects byAntoine Pitrou2010-08-281-48/+65
* | Issue #9294: remove dead code in Objects/object.c. Patch by Grant Limberg.Antoine Pitrou2010-07-271-13/+2