summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Issue #9979: Create function PyUnicode_AsWideCharString().Victor Stinner2010-09-291-14/+48
* Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r;Mark Dickinson2010-09-231-4/+0
* Issue #9213: Add index and count methods to range objects, needed toDaniel Stutzbach2010-09-131-49/+132
* Issue 7994: Make object.__format__() raise a PendingDeprecationWarningEric Smith2010-09-131-3/+20
* #9210: remove --with-wctype-functions configure option.Amaury Forgeot d'Arc2010-09-122-37/+0
* use return NULL; it's just as correctBenjamin Peterson2010-09-121-1/+1
* Issue #9738, #9836: Fix refleak introduced by r84704Victor Stinner2010-09-121-2/+2
* detect non-ascii characters much earlier (plugs ref leak)Benjamin Peterson2010-09-121-7/+7
* fix formattingBenjamin Peterson2010-09-111-6/+6
* check for NULL tp_as_mapping in PySequence_(Get/Set/Del)Slice #9834Benjamin Peterson2010-09-111-3/+3
* Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error onVictor Stinner2010-09-111-1/+9
* Issue #9757: memoryview objects get a release() method to release theAntoine Pitrou2010-09-091-10/+75
* Revert the doc change done in r83880. str.replace with negative count value i...Senthil Kumaran2010-09-081-2/+1
* Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy()Victor Stinner2010-09-031-1/+1
* Reindent.Georg Brandl2010-09-031-2/+2
* Issue 8420: Fix obscure set crashers.Raymond Hettinger2010-09-031-10/+20
* Issue #9212: Added the missing isdisjoint method to the dict_keys andDaniel Stutzbach2010-09-021-0/+58
* Removed an extraneous semicolonDaniel Stutzbach2010-09-021-1/+1
* Create PyUnicode_strdup() functionVictor Stinner2010-09-011-0/+22
* Create Py_UNICODE_strcat() functionVictor Stinner2010-09-011-0/+9
* Fix a compilation warningAntoine Pitrou2010-09-011-1/+1
* Issue #9737: Fix a crash when trying to delete a slice or an item fromAntoine Pitrou2010-09-011-0/+5
* Remove unicode_default_encoding constantVictor Stinner2010-09-011-10/+1
* Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()Antoine Pitrou2010-09-011-11/+0
* Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer APIAntoine Pitrou2010-09-011-27/+26