summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Patch from Georg Brandl and me for #1493Christian Heimes2007-11-251-2/+4
* Remove unused variable.Georg Brandl2007-11-251-1/+0
* Use proper API for iter.__next__().Georg Brandl2007-11-241-8/+3
* CleanupChristian Heimes2007-11-231-1/+0
* Just inline a function, and discover that it can only raise an exception.Amaury Forgeot d'Arc2007-11-221-14/+7
* Removed blocks from several functions in unicodeobject and stringobject where...Christian Heimes2007-11-222-93/+12
* Typo in bytes.replace(): the buffer interface was always used.Amaury Forgeot d'Arc2007-11-221-1/+1
* PyString_AsString is permissive and accepts unicode strings.Amaury Forgeot d'Arc2007-11-222-3/+3
* Rename buffer -> bytearray.Guido van Rossum2007-11-213-40/+40
* Merged revisions 59056-59076 via svnmerge fromChristian Heimes2007-11-201-2/+19
* Merged revisions 59005-59040 via svnmerge fromChristian Heimes2007-11-183-34/+79
* Fixed some build issues and updated docs.Christian Heimes2007-11-172-3/+3
* Found another memory leak in longrangeiter. And redo the previous correctionAmaury Forgeot d'Arc2007-11-152-4/+2
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-155-12/+12
* Correct a memory leak: the range() object was not properly freed.Amaury Forgeot d'Arc2007-11-152-0/+4
* Fix for #1415 pythonw.exe fails because std streams a missingChristian Heimes2007-11-131-1/+1
* Let's do as Guido says and return None instead of -1Christian Heimes2007-11-121-3/+2
* Stop Python code from instantiating a new stdprinter with sys.stderr.__class__()Christian Heimes2007-11-121-11/+90
* Merged revisions 58930-58938 via svnmerge fromChristian Heimes2007-11-121-4/+14
* Merged revisions 58886-58929 via svnmerge fromGuido van Rossum2007-11-104-10/+160
* Bug #1415Christian Heimes2007-11-101-2/+2
* Fixed memoryview constructor. It allowed arbitrary keyword arguments. The bug...Christian Heimes2007-11-081-3/+8
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-0612-1805/+862
* Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success.Christian Heimes2007-11-041-4/+8
* Patch 1171 by mfenniak -- allow subclassing of bytes.Guido van Rossum2007-11-031-4/+11
* Fixes for issue 1752184, ensuring type objects are always createdGuido van Rossum2007-11-021-3/+12
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-017-124/+189
* Minor correction to the stdprinter object.Guido van Rossum2007-10-301-2/+4
* Patch 1352 (continued in issue 1329) by Christian Heimes.Guido van Rossum2007-10-302-0/+121
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-301-3/+3
* Get rid of more uses of string and use unicodeNeal Norwitz2007-10-272-2/+2
* Sort the method lists for str8 and bytes so differences are more apparent.Guido van Rossum2007-10-262-145/+177
* Patch 1335 by Christian Heimes.Guido van Rossum2007-10-261-1/+121
* Fix some Py_ssize_t warnings on Win64 that were probably bugsNeal Norwitz2007-10-262-4/+4
* Patch # 1302 by Christian Heimes (with some love from me :-).Guido van Rossum2007-10-251-12/+39
* Fix a refleak for `filename', introduced in rev. 58466.Georg Brandl2007-10-241-4/+0
* Fix a broken format in a PyErr_Format() call: %lx is not supported.Guido van Rossum2007-10-241-1/+1
* Patch #1303: Adapt str8 constructor to bytes (now buffer) one.Georg Brandl2007-10-241-5/+140
* #1316: remove redundant PyLong_Check calls when PyInt_Check was already called.Georg Brandl2007-10-231-2/+2
* Remove redundant PyInt/PyLong checks.Georg Brandl2007-10-231-9/+2
* Patch #1071: Improve unicode.translate() so that you can pass unicodeGeorg Brandl2007-10-231-4/+48
* Make str/str8 comparisons return True/False for !=/==.Brett Cannon2007-10-221-10/+0
* Issue 1267, continued.Guido van Rossum2007-10-222-14/+6
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-191-9/+19
* Patch 1280, by Alexandre Vassalotti.Guido van Rossum2007-10-191-26/+9
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-162-58/+4
* For PEP3137: Adds missing methods to the mutable PyBytes object (soonGregory P. Smith2007-10-168-1069/+1254
* Fix a small typo in the comment of unicode_default_encoding[].Alexandre Vassalotti2007-10-161-1/+1
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-153-14/+44
* Remove the buffer API from PyUnicode as specified by PEP 3137. Also,Alexandre Vassalotti2007-10-141-15/+1