summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #10557: Fixed error messages from float() and other numericAlexander Belopolsky2010-12-041-2/+33
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-3/+3
* Remove redundant check for PyBytes in unicode_encode.Georg Brandl2010-12-031-17/+1
* #7475: add (un)transform method to bytes/bytearray and str, add back codecs t...Georg Brandl2010-12-021-1/+45
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() failsVictor Stinner2010-11-081-1/+1
* PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() failsVictor Stinner2010-11-081-3/+20
* str, bytes, bytearray docstring: remove unnecessary [...]Victor Stinner2010-11-071-1/+1
* Fix encode/decode method doc of str, bytes, bytearray typesVictor Stinner2010-11-071-3/+3
* Added more to docstrings for str.format, format_map, and __format__.Eric Smith2010-11-061-3/+5
* Issue #10288: The deprecated family of "char"-handling macrosDavid Malcolm2010-11-051-10/+10
* Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.fo...Eric Smith2010-11-041-0/+6
* Simplify PyUnicode_Encode/DecodeFSDefault on Windows/Mac OS XVictor Stinner2010-10-271-16/+18
* Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead ofVictor Stinner2010-10-201-0/+114
* PyUnicode_FromFormatV(): Fix %A formatVictor Stinner2010-10-181-0/+1
* make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-2/+2
* Add an optional size argument to _Py_char2wchar()Victor Stinner2010-10-161-2/+3
* Use locale encoding if Py_FileSystemDefaultEncoding is not setVictor Stinner2010-10-151-8/+32
* #9418: first step of moving private string methods to _string module.Georg Brandl2010-10-141-2/+30
* PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner2010-10-071-3/+3
* Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replaceVictor Stinner2010-10-021-22/+105
* Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul char...Victor Stinner2010-10-021-1/+1
* Fix PyUnicode_AsWideCharString(): set *size if size is not NULLVictor Stinner2010-09-291-0/+2
* Issue #9630: Redecode filenames when setting the filesystem encodingVictor Stinner2010-09-291-1/+7
* Issue #9979: Create function PyUnicode_AsWideCharString().Victor Stinner2010-09-291-14/+48
* use return NULL; it's just as correctBenjamin Peterson2010-09-121-1/+1
* Issue #9738, #9836: Fix refleak introduced by r84704Victor Stinner2010-09-121-2/+2
* detect non-ascii characters much earlier (plugs ref leak)Benjamin Peterson2010-09-121-7/+7
* Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error onVictor Stinner2010-09-111-1/+9
* Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy()Victor Stinner2010-09-031-1/+1
* Create PyUnicode_strdup() functionVictor Stinner2010-09-011-0/+22
* Create Py_UNICODE_strcat() functionVictor Stinner2010-09-011-0/+9
* Remove unicode_default_encoding constantVictor Stinner2010-09-011-10/+1
* Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()Antoine Pitrou2010-09-011-11/+0
* Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer APIAntoine Pitrou2010-09-011-27/+26
* Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use m...Daniel Stutzbach2010-08-241-2/+2
* Fix PyUnicode_EncodeFSDefault() indentationVictor Stinner2010-08-181-2/+2
* Issue #9425: Create Py_UNICODE_strncmp() functionVictor Stinner2010-08-161-0/+17
* Issue #9542: Create PyUnicode_FSDecoder() functionVictor Stinner2010-08-131-3/+41
* Issue #9425: Create PyErr_WarnFormat() functionVictor Stinner2010-08-131-7/+8
* Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-111-9/+1
* Issue #9425: create Py_UNICODE_strrchr() functionVictor Stinner2010-08-101-0/+13
* Revert r83395, it introduces test failures and is not necessary anyway since ...Georg Brandl2010-08-011-2/+2
* #8821: do not rely on Unicode strings being terminated with a \u0000, rather ...Georg Brandl2010-08-011-2/+2
* Use Py_CLEAR().Georg Brandl2010-07-291-4/+2
* Sub-issue of #9036: Fix incorrect use of Py_CHARMASK.Stefan Krah2010-07-191-1/+1
* Fix the docstrings of the capitalize method.Senthil Kumaran2010-07-051-1/+1
* Update comment about surrogates.Ezio Melotti2010-07-031-5/+5
* Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629.Ezio Melotti2010-07-011-56/+56
* #9078: fix some Unicode C API descriptions, in comments and docs.Georg Brandl2010-06-271-1/+1