summaryrefslogtreecommitdiff
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Remove an unneeded variable and assignment.Brett Cannon2010-05-041-3/+2
* more _PyString_Resize error checkingBenjamin Peterson2010-04-031-4/+8
* #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to...Florent Xicluna2010-03-301-3/+5
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-10/+1
* Issue #1583863: An unicode subclass can now override the __str__ methodVictor Stinner2010-03-221-1/+1
* #7649: "u'%c' % char" now behaves like "u'%s' % char" and raises a UnicodeDec...Ezio Melotti2010-02-251-9/+18
* Issue #7649: Fix u'%c' % char for character in range 0x80..0xFFVictor Stinner2010-02-231-1/+9
* #7775: fixed docstring for rpartitionEzio Melotti2010-01-251-1/+1
* Sanitize bloom filter macrosAntoine Pitrou2010-01-131-3/+13
* Fix Windows build (re r77461)Antoine Pitrou2010-01-131-1/+1
* Issue #7622: Improve the split(), rsplit(), splitlines() and replace()Antoine Pitrou2010-01-131-348/+72
* Issue #1680159: unicode coercion during an 'in' operation was maskingR. David Murray2009-12-141-2/+0
* Issue #3382: Make '%F' and float.__format__('F') convert results to upper cas...Eric Smith2009-11-291-2/+0
* Issue #7117, continued: Remove substitution of %g-style formatting forMark Dickinson2009-11-231-3/+0
* Remove restriction on precision when formatting floats. This is theMark Dickinson2009-11-231-57/+21
* Finished removing _PyOS_double_to_string, as mentioned in issue 7117.Eric Smith2009-10-261-14/+11
* #7116: str.join() takes an iterable.Georg Brandl2009-10-141-2/+2
* add keyword arguments support to str/unicode encode and decode #6300Benjamin Peterson2009-09-181-6/+10
* Issue #6922: Fix an infinite loop when trying to decode an invalidGeorg Brandl2009-09-171-1/+1
* Silence gcc 'comparison always false' warningMark Dickinson2009-08-281-1/+3
* Grow the allocated buffer in PyUnicode_EncodeUTF7 to avoid buffer overrun.Alexandre Vassalotti2009-07-071-2/+2
* #6224: s/JPython/Jython/, and remove one link to a module nine years old.Georg Brandl2009-06-061-1/+1
* #5929: fix signedness warning.Georg Brandl2009-05-051-1/+1
* Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal se...Antoine Pitrou2009-05-041-184/+240
* There's no %A in Python 2.x!Walter Dörwald2009-05-031-1/+1
* Issue #5108: Handle %s like %S and %R in PyUnicode_FromFormatV(): CallWalter Dörwald2009-05-031-48/+32
* Issue #5835, deprecate PyOS_ascii_formatd.Eric Smith2009-04-251-9/+6
* Issue #532631: Apply floatformat changes to unicodeobject.cMark Dickinson2009-03-291-0/+9
* Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 testMark Dickinson2009-03-291-1/+1
* There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead.Hirokazu Yamamoto2009-03-211-1/+1
* Issue 4474: On platforms with sizeof(wchar_t) == 4 andMark Dickinson2009-03-181-0/+58
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-211-1/+1
* Fix warnings GCC emits where the argument of PyErr_Format is a single variable.Georg Brandl2009-02-131-3/+3
* fix indentation in commentBenjamin Peterson2009-01-311-2/+2
* fix indentation; looks like all I managed to do the first time is make things...Benjamin Peterson2009-01-311-2558/+2558
* fix indentationBenjamin Peterson2009-01-311-2/+2
* completely detabify unicodeobject.cBenjamin Peterson2009-01-311-3010/+3010
* Remove unnecessary casts related to unicode_decode_call_errorhandler.Alexandre Vassalotti2008-12-271-27/+29
* Fix a small typo in docstringAmaury Forgeot d'Arc2008-11-291-1/+1
* Docstring change for *partition: use same tense as other docstrings.Andrew M. Kuchling2008-10-041-6/+6
* Fixed a couple more C99 comments and one occurence of inline.Christian Heimes2008-10-021-15/+15
* Fix varname in docstring. #3822.Georg Brandl2008-09-091-2/+2
* Correct a crash when two successive unicode allocations fail with a MemoryError:Amaury Forgeot d'Arc2008-07-311-1/+3
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-311-14/+47
* #2242: utf7 decoding crashes on bogus input on some Windows/MSVC versionsAntoine Pitrou2008-07-251-1/+1
* Backed out r65069, pending fixing it in Windows.Eric Smith2008-07-171-8/+5
* Issue 3382: Make '%F' and float.__format__('F') convert results to upper case.Eric Smith2008-07-171-5/+8
* Added additional __sizeof__ implementations and addressed comments made inRobert Schuppenies2008-07-101-14/+2
* Issue 3048: Fixed sys.getsizeof for unicode objects.Robert Schuppenies2008-06-101-0/+24
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-66/+66