summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-305-6/+0
* Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-303-3/+0
* Indentation cleanup.Stefan Krah2010-11-261-9/+9
* Issue #7094: Add alternate ('#') flag to __format__ methods for float, comple...Eric Smith2010-11-251-16/+6
* pep 7 actually wants the brace on a new lineBenjamin Peterson2010-11-201-22/+44
* code style and simplificationBenjamin Peterson2010-11-201-72/+31
* Add error handling in range_count.Georg Brandl2010-11-201-1/+4
* count() should return integers #10474Benjamin Peterson2010-11-201-2/+2
* code styleBenjamin Peterson2010-11-201-8/+4
* #1574217: only swallow AttributeErrors in isinstance, not everything.R. David Murray2010-11-201-3/+12
* handle dict subclasses gracefully in PyArg_ValidateKeywordArgumentsBenjamin Peterson2010-11-171-1/+1
* Issue #10359: Remove ";" after function definition, invalid in ISO CVictor Stinner2010-11-091-1/+1
* PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() failsVictor Stinner2010-11-081-1/+1
* PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() failsVictor Stinner2010-11-081-3/+20
* str, bytes, bytearray docstring: remove unnecessary [...]Victor Stinner2010-11-073-3/+3
* Fix encode/decode method doc of str, bytes, bytearray typesVictor Stinner2010-11-073-9/+9
* Added more to docstrings for str.format, format_map, and __format__.Eric Smith2010-11-061-3/+5
* Issue #10288: The deprecated family of "char"-handling macrosDavid Malcolm2010-11-052-24/+24
* Followup to r86170: fix reference leak in str.formatAntoine Pitrou2010-11-051-1/+0
* Issue #10293: Remove obsolete field in the PyMemoryView structure,Antoine Pitrou2010-11-041-44/+1
* Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.fo...Eric Smith2010-11-042-1/+16
* deuglifyBenjamin Peterson2010-11-031-2/+3
* Issue 10221: Improve error message for dict.pop().Raymond Hettinger2010-10-301-2/+1
* Issue #5437: A preallocated MemoryError instance should not hold tracebackAntoine Pitrou2010-10-281-10/+87
* Simplify PyUnicode_Encode/DecodeFSDefault on Windows/Mac OS XVictor Stinner2010-10-271-16/+18
* Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ...Georg Brandl2010-10-241-0/+10
* Follow up to #9778: fix regressions on 64-bit Windows buildsAntoine Pitrou2010-10-232-16/+7
* follow up to #9778: define and use an unsigned hash typeBenjamin Peterson2010-10-235-18/+18
* Revert r85797 (and r85798): it broke the Windows buildbots because ofAntoine Pitrou2010-10-221-48/+30
* Issue #9935: Speed up pickling of instances of user-defined classes.Antoine Pitrou2010-10-221-30/+48
* Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead ofVictor Stinner2010-10-201-0/+114
* PyUnicode_FromFormatV(): Fix %A formatVictor Stinner2010-10-181-0/+1
* Remove unneeded casts to hashfunc.Georg Brandl2010-10-183-5/+5
* -1 is reserved for errorsBenjamin Peterson2010-10-171-0/+3
* fix prototypeBenjamin Peterson2010-10-171-1/+1
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-1715-86/+84
* use helper hash unimplemented functionBenjamin Peterson2010-10-171-8/+1
* Add an optional size argument to _Py_char2wchar()Victor Stinner2010-10-161-2/+3
* Remove unused label.Georg Brandl2010-10-151-4/+0
* Use locale encoding if Py_FileSystemDefaultEncoding is not setVictor Stinner2010-10-153-25/+32
* #9418: first step of moving private string methods to _string module.Georg Brandl2010-10-142-4/+32
* prefer clearing global objects to obscure module.__dict__ bugs #10068Benjamin Peterson2010-10-121-4/+1
* Upgrade to Unicode 6.0.0.Martin v. Löwis2010-10-111-702/+804
* PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner2010-10-071-3/+3
* typoBenjamin Peterson2010-10-031-2/+2
* Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replaceVictor Stinner2010-10-021-22/+105
* Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul char...Victor Stinner2010-10-021-1/+1
* type.__abstractmethods__ should raise an AttributeError #10006Benjamin Peterson2010-10-021-2/+5
* Fix PyUnicode_AsWideCharString(): set *size if size is not NULLVictor Stinner2010-09-291-0/+2
* Issue #9630: Redecode filenames when setting the filesystem encodingVictor Stinner2010-09-293-1/+28