summaryrefslogtreecommitdiffstats
path: root/Include/unicodeobject.h
Commit message (Expand)AuthorAgeFilesLines
* Issue #10413: Updated comments to reflect code changesAlexander Belopolsky2010-11-161-18/+13
* Issue #8761: Mangle PyUnicode_CompareWithASCIIString function name forVictor Stinner2010-10-241-2/+2
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-1/+1
* Use locale encoding if Py_FileSystemDefaultEncoding is not setVictor Stinner2010-10-151-3/+6
* PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner2010-10-071-1/+1
* Issue #9979: Create function PyUnicode_AsWideCharString().Victor Stinner2010-09-291-2/+17
* #9210: remove --with-wctype-functions configure option.Amaury Forgeot d'Arc2010-09-121-36/+1
* Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error onVictor Stinner2010-09-111-2/+8
* Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy()Victor Stinner2010-09-031-1/+1
* Create PyUnicode_strdup() functionVictor Stinner2010-09-011-1/+10
* Create Py_UNICODE_strcat() functionVictor Stinner2010-09-011-0/+3
* Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()Antoine Pitrou2010-09-011-12/+0
* #5127: Even on narrow unicode builds, the C functions that access the UnicodeAmaury Forgeot d'Arc2010-08-181-58/+22
* Issue #9425: Create Py_UNICODE_strncmp() functionVictor Stinner2010-08-161-6/+21
* Issue #9542: Create PyUnicode_FSDecoder() functionVictor Stinner2010-08-131-3/+9
* Issue #9425: create Py_UNICODE_strrchr() functionVictor Stinner2010-08-101-0/+4
* #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