summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Backport: Double-fix of crash in Unicode freelist handling.Jeremy Hylton2003-09-171-1/+14
* Backport:Neal Norwitz2003-04-111-9/+9
* Backport: Add more missing PyErr_NoMemory() after failled memory allocsNeal Norwitz2003-02-111-1/+1
* Backport MAL's patch for bug #659709: bogus computation of float lengthRaymond Hettinger2003-01-021-10/+21
* Backport 2.173:Neal Norwitz2002-11-071-3/+1
* Backport stringobject.c 2.194 and unicodeobject.c 2.172:Guido van Rossum2002-10-111-2/+6
* Backport:Michael W. Hudson2002-10-071-1/+55
* unicode_memchr(): Squashed compiler wng (signed-vs-unsigned comparison).Tim Peters2002-09-241-1/+1
* Backport the UTF-8 codec from 2.3 and add a work-around to let theMarc-André Lemburg2002-09-241-101/+118
* Fix cast from backport.Marc-André Lemburg2002-09-241-1/+1
* Backport from trunk:Guido van Rossum2002-09-231-1/+2
* Backport 2.166 from trunk:Guido van Rossum2002-09-231-3/+9
* Fix some endcase bugs in unicode rfind()/rindex() and endswith().Guido van Rossum2002-08-201-3/+3
* backport tim_one's patch:Anthony Baxter2002-04-301-26/+8
* Backport checkin:Walter Dörwald2002-04-221-58/+163
* Backport the following changes:Walter Dörwald2002-04-221-5/+13
* Martin's fix forMichael W. Hudson2002-03-181-14/+24
* FixMichael W. Hudson2002-03-181-7/+9
* Move to zlib 1.1.4 on Windows (the new version that squashes the "doubleTim Peters2002-03-131-2/+2
* Whitespace normalization and minor cosmetics.Marc-André Lemburg2002-02-251-22/+24
* Fix UTF-8 encoder pointer arithmetic and restore 2.2 behaviour.Marc-André Lemburg2002-02-251-13/+10
* Fix the problem reported inMichael W. Hudson2002-02-221-3/+10
* Fix for #489669 (Neil Norwitz): memory leak in test_descr (unicode).Guido van Rossum2001-12-061-6/+3
* formatfloat(), formatint(): Conversion of sprintf() to PyOS_snprintf()Barry Warsaw2001-11-281-4/+6
* Fix for bug #485951: repr diff between string and unicode.Marc-André Lemburg2001-11-281-1/+1
* Fix for bug #438164: %-formatting using Unicode objects.Marc-André Lemburg2001-11-201-0/+4
* Additional test and documentation for the unicode() changes.Marc-André Lemburg2001-10-191-2/+3
* SF patch #470578: Fixes to synchronize unicode() and str()Guido van Rossum2001-10-191-46/+40
* Enable GC for new-style instances. This touches lots of files, sinceGuido van Rossum2001-10-051-2/+7
* Fix a bug in rendering of \\ by repr() -- it rendered as \\\ insteadGuido van Rossum2001-09-211-0/+1
* Fix Unicode .join() method to raise a TypeError for sequenceMarc-André Lemburg2001-09-201-1/+11
* Implement the changes proposed in patch #413333. unicode(obj) nowMarc-André Lemburg2001-09-201-42/+55
* Patch #435971: UTF-7 codec by Brian Quinlan.Marc-André Lemburg2001-09-201-0/+300
* str_subtype_new, unicode_subtype_new:Tim Peters2001-09-121-10/+11
* More on bug 460020: disable many optimizations of unicode subclasses.Tim Peters2001-09-121-10/+11
* Possibly the end of SF [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-111-4/+12
* PyUnicode_FromEncodedObject(): Repair memory leak in an error case.Tim Peters2001-09-111-2/+2
* Make unicode subclassable.Guido van Rossum2001-08-301-2/+32
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-161-116/+60
* SF patch #438013 Remove 2-byte Py_UCS2 assumptionsTim Peters2001-08-091-76/+90
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-9/+45
* Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h.Jeremy Hylton2001-07-301-14/+0
* Fix for bug #444493: u'\U00010001' segfaults with current CVS onMarc-André Lemburg2001-07-251-6/+21
* Make the unicode-escape and the UTF-16 codecs handle surrogatesMarc-André Lemburg2001-07-201-24/+46
* #ifdef out generation of \U escapes unless Py_UNICODE_WIDE. ThisGuido van Rossum2001-07-201-0/+2
* use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZEFredrik Lundh2001-06-271-4/+4
* Encode surrogates in UTF-8 even for a wide Py_UNICODE.Martin v. Löwis2001-06-271-7/+12
* When decoding UTF-16, don't assume that the buffer is in native endiannessMartin v. Löwis2001-06-261-4/+4
* Support using UCS-4 as the Py_UNICODE type:Martin v. Löwis2001-06-261-30/+89
* experimental UCS-4 support: added USE_UCS4_STORAGE define toFredrik Lundh2001-06-261-0/+2