summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Fixed a small omission in the renaming of "unicode" to "str".Alexandre Vassalotti2008-05-031-1/+1
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-131-0/+7
* Merged revisions 62199 via svnmerge fromMartin v. Löwis2008-04-071-1/+1
* Change command line processing API to use wchar_t.Martin v. Löwis2008-04-051-0/+6
* Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge fromChristian Heimes2008-03-281-2/+2
* Merged revisions 61964-61979 via svnmerge fromChristian Heimes2008-03-281-2/+2
* Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,...Christian Heimes2008-03-251-2/+2
* Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,...Christian Heimes2008-03-231-8/+46
* Disabled some unused functions to silence compiler warningsChristian Heimes2008-03-211-0/+4
* Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,...Christian Heimes2008-03-181-17/+21
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-25/+33
* Merged revisions 61034-61036,61038-61048 via svnmerge fromChristian Heimes2008-02-241-13/+31
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-12/+21
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-061-18/+18
* Merged revisions 60408-60440 via svnmerge fromChristian Heimes2008-01-301-18/+81
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-18/+18
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-34/+34
* Added view and iterator types to collections / _abcollChristian Heimes2007-11-281-1/+1
* #1496: revert str.translate() to the old version, and addGeorg Brandl2007-11-271-46/+104
* CleanupChristian Heimes2007-11-231-1/+0
* Removed blocks from several functions in unicodeobject and stringobject where...Christian Heimes2007-11-221-36/+9
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-1/+1
* Merged revisions 59056-59076 via svnmerge fromChristian Heimes2007-11-201-2/+19
* Merged revisions 59005-59040 via svnmerge fromChristian Heimes2007-11-181-32/+16
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-6/+6
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-131/+94
* Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success.Christian Heimes2007-11-041-4/+8
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-3/+6
* Patch # 1302 by Christian Heimes (with some love from me :-).Guido van Rossum2007-10-251-12/+39
* Fix a broken format in a PyErr_Format() call: %lx is not supported.Guido van Rossum2007-10-241-1/+1
* 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
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-2/+2
* 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-151-1/+34
* Remove the buffer API from PyUnicode as specified by PEP 3137. Also,Alexandre Vassalotti2007-10-141-15/+1
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-131-4/+0
* Delete bufferobject.[ch].Guido van Rossum2007-10-081-1/+5
* Patch # 1145 by Thomas Lee:Guido van Rossum2007-09-271-7/+13
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-1/+1
* Optimize unicode_hash() by not callingGuido van Rossum2007-09-181-12/+18
* Micro optimizations after staring at gprof output for a while.Guido van Rossum2007-09-181-3/+4
* Restore caching of unicode hash value. This apparently was brokenNeil Schemenauer2007-09-071-5/+12
* Removed unicode_format and unicode__format__, they just called through to oth...Eric Smith2007-08-311-19/+2
* Per Georg's suggestion, get rid of str.decode() (which always raises anGuido van Rossum2007-08-311-19/+0
* Change %s argument for PyUnicode_FromFormat toMartin v. Löwis2007-08-311-2/+46
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-23/+1
* Set startinpos before calling the error handler.Walter Dörwald2007-08-301-0/+1
* Rewrap line.Walter Dörwald2007-08-301-1/+2