| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixed accidental indentation change. | Eric Smith | 2007-08-27 | 1 | -1/+1 |
|
|
* | PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico... | Eric Smith | 2007-08-27 | 1 | -337/+344 |
|
|
* | Fix refleaks in test_unicode and test_string related to the new format code. | Neal Norwitz | 2007-08-27 | 1 | -30/+20 |
|
|
* | PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje... | Eric Smith | 2007-08-26 | 1 | -8/+157 |
|
|
* | Restore an assert, but move it to the proper place. | Neal Norwitz | 2007-08-26 | 1 | -1/+1 |
|
|
* | Remove assert that seems out of place. It triggers with test_string, | Neal Norwitz | 2007-08-26 | 1 | -2/+0 |
|
|
* | Implementation of PEP 3101, Advanced String Formatting. | Eric Smith | 2007-08-25 | 1 | -15/+231 |
|
|
* | Since PyUnicode_AsString is a public API, don't just assert, but do | Neal Norwitz | 2007-08-25 | 1 | -1/+4 |
|
|
* | Merged in py3k-buffer branch to main line. All objects now use the buffer pr... | Travis E. Oliphant | 2007-08-18 | 1 | -48/+15 |
|
|
* | Move some declarations before code, to compile with GCC 2.95. | Guido van Rossum | 2007-08-17 | 1 | -7/+7 |
|
|
* | Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and | Walter Dörwald | 2007-08-16 | 1 | -0/+266 |
|
|
* | Get rid of some dead code and unneeded XXX comments by Neal. | Guido van Rossum | 2007-08-16 | 1 | -11/+3 |
|
|
* | Implement PEP 3131. Add isidentifier to str. | Martin v. Löwis | 2007-08-15 | 1 | -1/+44 |
|
|
* | Add comment that should be addressed | Neal Norwitz | 2007-08-12 | 1 | -0/+3 |
|
|
* | PyErr_Warn is deprecated in 2.5 - goes away for 3.0 | Skip Montanaro | 2007-08-12 | 1 | -9/+10 |
|
|
* | Fix refleak: decref inputobj after extracting the relavant info (the object | Walter Dörwald | 2007-08-10 | 1 | -0/+3 |
|
|
* | Remove references to unicode from help(str). | Collin Winter | 2007-08-07 | 1 | -2/+2 |
|
|
* | Merged revisions 56753-56781 via svnmerge from | Guido van Rossum | 2007-08-06 | 1 | -2/+2 |
|
|
* | Change PyUnicode_FromString[AndSize] to expect UTF-8. | Martin v. Löwis | 2007-08-05 | 1 | -12/+8 |
|
|
* | Bytes (which are the input for decoding) are mutable now. If a decoding | Walter Dörwald | 2007-07-30 | 1 | -19/+35 |
|
|
* | Fix merge breakage. | Martin v. Löwis | 2007-07-21 | 1 | -4/+4 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -16/+13 |
|
|
* | Fix a bug in PyUnicode_FromStringAndSize() with signed characters. | Guido van Rossum | 2007-07-19 | 1 | -4/+4 |
|
|
* | Merged revisions 56301-56442 via svnmerge from | Guido van Rossum | 2007-07-18 | 1 | -1/+2 |
|
|
* | Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. | Guido van Rossum | 2007-07-16 | 1 | -1/+1 |
|
|
* | Make chr() and ord() return/accept surrogate pairs in narrow builds. | Guido van Rossum | 2007-07-15 | 1 | -10/+9 |
|
|
* | Fixed a refcount leak in _PyUnicode_AsDefaultEncodedString(). | Guido van Rossum | 2007-07-12 | 1 | -4/+1 |
|
|
* | Make test_descr.py pass. Had to disable a few tests, remove references | Guido van Rossum | 2007-07-11 | 1 | -1/+1 |
|
|
* | Silence GCC warning about uninitialzed variable. | Walter Dörwald | 2007-06-20 | 1 | -12/+5 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -8/+26 |
|
|
* | Make it compile with GCC 2.96. | Guido van Rossum | 2007-06-13 | 1 | -3/+5 |
|
|
* | Mention name of left operand, if "foo in unicode_string" | Walter Dörwald | 2007-06-12 | 1 | -2/+3 |
|
|
* | Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U, | Walter Dörwald | 2007-06-11 | 1 | -0/+25 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -3/+94 |
|
|
* | unichr() is named chr() now => fix name in error message. | Walter Dörwald | 2007-06-05 | 1 | -2/+2 |
|
|
* | Add support for width, precision and zeropadding to the %d, %i, %u and %x | Walter Dörwald | 2007-05-31 | 1 | -30/+86 |
|
|
* | Add interning of unicode strings by copying the functionality from | Walter Dörwald | 2007-05-25 | 1 | -0/+139 |
|
|
* | Simplify %U handling by using Py_UNICODE_COPY. | Walter Dörwald | 2007-05-24 | 1 | -5/+3 |
|
|
* | Add a format character %S to PyUnicode_FromFormat() that | Walter Dörwald | 2007-05-23 | 1 | -7/+22 |
|
|
* | Add a format specifier %R to PyUnicode_FromFormat(), which embeds | Walter Dörwald | 2007-05-19 | 1 | -3/+64 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -7/+30 |
|
|
* | Add 'U'/'U#' format characters to Py_BuildValue (and thus | Walter Dörwald | 2007-05-18 | 1 | -7/+229 |
|
|
* | Revert last checkin: _PyUnicode_New() allocates space | Walter Dörwald | 2007-05-18 | 1 | -1/+1 |
|
|
* | Allocate one more character, so that the terminating | Walter Dörwald | 2007-05-18 | 1 | -1/+1 |
|
|
* | Change PyUnicode_EncodeCharmap() to return bytes objects | Walter Dörwald | 2007-05-12 | 1 | -20/+21 |
|
|
* | Change PyUnicode_EncodeRawUnicodeEscape() to return bytes | Walter Dörwald | 2007-05-12 | 1 | -8/+19 |
|
|
* | Reuse static global hexdigits array. | Walter Dörwald | 2007-05-12 | 1 | -14/+12 |
|
|
* | Change PyUnicode_EncodeUnicodeEscape() to return a bytes object. | Walter Dörwald | 2007-05-12 | 1 | -53/+179 |
|
|
* | Mention type in the exception message. | Walter Dörwald | 2007-05-09 | 1 | -2/+3 |
|
|
* | Check whether the strlen() result overflows Py_ssize_t. | Walter Dörwald | 2007-05-06 | 1 | -1/+5 |
|
|