summaryrefslogtreecommitdiffstats
path: root/Include/unicodeobject.h
Commit message (Expand)AuthorAgeFilesLines
* #9078: fix some Unicode C API descriptions, in comments and docs.Georg Brandl2010-06-271-6/+6
* rephraseBenjamin Peterson2010-05-151-2/+2
* Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a UnicodeVictor Stinner2010-05-151-0/+10
* Issue #8711: Document PyUnicode_DecodeFSDefault*() functionsVictor Stinner2010-05-141-8/+12
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-259/+259
* alias PyUnicode_CompareWithASCIIBenjamin Peterson2010-05-071-0/+2
* Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore,Victor Stinner2010-04-221-2/+2
* Issue #5915: Implement PEP 383, Non-decodable Bytes inMartin v. Löwis2009-05-051-19/+29
* Merged revisions 72283-72284 via svnmerge fromAntoine Pitrou2009-05-041-4/+2
* The other half of Issue #1580: use short float repr where possible.Eric Smith2009-04-161-14/+12
* Added ',' thousands grouping to int.__format__. See PEP 378.Eric Smith2009-04-031-1/+12
* Merged revisions 68167,68276,68292-68293,68344 via svnmerge fromBenjamin Peterson2009-01-091-10/+28
* Merged revisions 67970-67971 via svnmerge fromAlexandre Vassalotti2008-12-281-8/+8
* Merged revisions 66887,66891,66902-66903,66905-66906,66911-66913,66922,66927-...Benjamin Peterson2008-10-191-1/+1
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-4/+15
* Merged revisions 64491 via svnmerge fromEric Smith2008-06-241-2/+2
* #2630: Implement PEP 3138.Georg Brandl2008-06-111-0/+8
* Move the codec decode type checks to bytes/bytearray.decode().Marc-André Lemburg2008-06-061-1/+35
* Revert r63934 -- it was mixing two patches.Georg Brandl2008-06-041-8/+0
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-0/+8
* Refactor and clean up str.format() code (and helpers) in advance of optimizat...Eric Smith2008-05-301-0/+6
* Merged revisions 63078 via svnmerge fromEric Smith2008-05-111-0/+11
* Cleanup the Unicode header documentation and formatting a bit.Marc-André Lemburg2008-04-291-11/+22
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-0/+4
* Merged revisions 60408-60440 via svnmerge fromChristian Heimes2008-01-301-1/+8
* Merged revisions 60284-60349 via svnmerge fromChristian Heimes2008-01-271-0/+2
* Always define Py_USING_UNICODE, 3rd party software may depend on it. A missin...Christian Heimes2008-01-071-0/+3
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-2/+2
* Added all PyTypeObjects to the appropriate header files.Christian Heimes2007-11-291-0/+1
* Merged revisions 59056-59076 via svnmerge fromChristian Heimes2007-11-201-0/+7
* Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success.Christian Heimes2007-11-041-0/+8
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-151-0/+16
* Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() butGuido van Rossum2007-08-291-8/+13
* PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico...Eric Smith2007-08-271-3/+0
* Fix refleaks in test_unicode and test_string related to the new format code.Neal Norwitz2007-08-271-4/+2
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-261-2/+1
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+5
* Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le andWalter Dörwald2007-08-161-0/+82
* Implement PEP 3131. Add isidentifier to str.Martin v. Löwis2007-08-151-0/+6
* Add XID_Start and XID_Continue properties to unicodectype.Martin v. Löwis2007-08-141-0/+12
* Whitespace normalization.Neal Norwitz2007-08-081-12/+12
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-2/+2
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-4/+32
* Add interning of unicode strings by copying the functionality fromWalter Dörwald2007-05-251-0/+15
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-0/+20
* Add missing #define.Walter Dörwald2007-05-181-0/+1
* Add 'U'/'U#' format characters to Py_BuildValue (and thusWalter Dörwald2007-05-181-1/+15
* Add PyUnicode_FromString(), which create a unicode object from aWalter Dörwald2007-05-051-0/+8
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-8/+0
* Merged revisions 53875-53911 via svnmerge fromThomas Wouters2007-02-251-1/+2