summaryrefslogtreecommitdiff
path: root/Include/unicodeobject.h
Commit message (Expand)AuthorAgeFilesLines
* Issue #28139: Fix messed up indentationMartin Panter2016-09-171-1/+1
* Spelling and grammar fixes in code comments and documentationMartin Panter2016-07-281-2/+2
* Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-2/+2
* Fix typos in documentation and commentsMartin Panter2016-04-051-1/+1
* Issue #25523: Backported a-to-an corrections.Serhiy Storchaka2015-11-021-1/+1
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-240/+240
* Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal se...Antoine Pitrou2009-05-041-4/+2
* Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declarationMarc-André Lemburg2009-01-051-10/+28
* Sort UCS-2/UCS-4 name mangling list.Alexandre Vassalotti2008-12-281-8/+8
* Fix name mangling of PyUnicode_ClearFreeList.Alexandre Vassalotti2008-12-281-1/+1
* #4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module:Amaury Forgeot d'Arc2008-10-141-1/+1
* Refactor and clean up str.format() code (and helpers) in advance of optimizat...Eric Smith2008-05-301-0/+6
* Implemented Martin's suggestion to clear the free lists during the garbage co...Christian Heimes2008-02-141-0/+4
* Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detec...Christian Heimes2008-01-301-1/+8
* Add stdarg include for va_list to get this to compile on cygwinNeal Norwitz2008-01-271-0/+2
* Backport of several functions from Python 3.0 to 2.6 including PyUnicode_From...Christian Heimes2008-01-251-0/+23
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-2/+2
* The incremental decoder for utf-7 must preserve its state between calls.Amaury Forgeot d'Arc2007-11-201-0/+7
* Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.Walter Dörwald2007-08-171-0/+82
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-2/+2
* Variation of patch # 1624059 to speed up checking if an object is a subclassNeal Norwitz2007-02-251-1/+2
* Slightly revised version of patch #1538956:Marc-André Lemburg2006-08-141-0/+24
* Patch #1455898: Incremental mode for "mbcs" codec.Martin v. Löwis2006-06-141-0/+7
* Patch #1359618: Speed-up charmap encoder.Martin v. Löwis2006-06-041-0/+5
* needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only),Fredrik Lundh2006-05-281-9/+2
* needforspeed: added rpartition implementationFredrik Lundh2006-05-261-1/+12
* needforspeed: partition implementation, part two.Fredrik Lundh2006-05-261-0/+9
* needforspeed: check first *and* last character before doing a full memcmpFredrik Lundh2006-05-231-4/+6
* needforspeed: use memcpy for "long" strings; use a better algorithmFredrik Lundh2006-05-221-4/+9
* needforspeed: speed up unicode repeat, unicode string copyFredrik Lundh2006-05-221-4/+7
* Merge ssize_t branch.Martin v. Löwis2006-02-151-46/+46
* _PyUnicode_IsWhitespace(),Tim Peters2005-10-291-2/+2
* SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complainWalter Dörwald2005-08-301-0/+10
* Correct the handling of 0-termination of PyUnicode_AsWideChar()Marc-André Lemburg2004-11-221-2/+8
* SF patch #1056231: typo in comment (unicodeobject.h)Raymond Hettinger2004-10-311-1/+1
* SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now supportWalter Dörwald2004-09-071-0/+21
* SF #989185: Drop unicode.iswide() and unicode.width() and addHye-Shik Chang2004-08-041-18/+0
* Allow string and unicode return types from .encode()/.decode()Marc-André Lemburg2004-07-081-0/+11
* - SF #962502: Add two more methods for unicode type; width() andHye-Shik Chang2004-06-021-0/+18
* Add rsplit method for str and unicode builtin types.Hye-Shik Chang2003-12-151-0/+20
* Add name mangling for new PyUnicode_FromOrdinal() and fix declarationMarc-André Lemburg2002-08-121-1/+3
* Excise DL_EXPORT from Include.Mark Hammond2002-08-121-72/+72
* Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.Marc-André Lemburg2002-08-111-0/+12
* Fix for bug [ 561796 ] string.find causes lazy errorMarc-André Lemburg2002-05-291-1/+2
* Apply patch diff.txt from SF feature requestWalter Dörwald2002-04-221-0/+7
* SF patch #470578: Fixes to synchronize unicode() and str()Guido van Rossum2001-10-191-10/+9
* Patch #435971: UTF-7 codec by Brian Quinlan.Marc-André Lemburg2001-09-201-0/+18
* Fix for bug #462737.Marc-André Lemburg2001-09-191-3/+3
* Possibly the end of SF [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-111-0/+2
* Make the Py<type>_Check() macro use PyObject_TypeCheck().Guido van Rossum2001-08-301-1/+1