| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #5915: Implement PEP 383, Non-decodable Bytes in | Martin v. Löwis | 2009-05-05 | 1 | -19/+29 |
|
|
* | Merged revisions 72283-72284 via svnmerge from | Antoine Pitrou | 2009-05-04 | 1 | -4/+2 |
|
|
* | The other half of Issue #1580: use short float repr where possible. | Eric Smith | 2009-04-16 | 1 | -14/+12 |
|
|
* | Added ',' thousands grouping to int.__format__. See PEP 378. | Eric Smith | 2009-04-03 | 1 | -1/+12 |
|
|
* | Merged revisions 68167,68276,68292-68293,68344 via svnmerge from | Benjamin Peterson | 2009-01-09 | 1 | -10/+28 |
|
|
* | Merged revisions 67970-67971 via svnmerge from | Alexandre Vassalotti | 2008-12-28 | 1 | -8/+8 |
|
|
* | Merged revisions 66887,66891,66902-66903,66905-66906,66911-66913,66922,66927-... | Benjamin Peterson | 2008-10-19 | 1 | -1/+1 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -4/+15 |
|
|
* | Merged revisions 64491 via svnmerge from | Eric Smith | 2008-06-24 | 1 | -2/+2 |
|
|
* | #2630: Implement PEP 3138. | Georg Brandl | 2008-06-11 | 1 | -0/+8 |
|
|
* | Move the codec decode type checks to bytes/bytearray.decode(). | Marc-André Lemburg | 2008-06-06 | 1 | -1/+35 |
|
|
* | Revert r63934 -- it was mixing two patches. | Georg Brandl | 2008-06-04 | 1 | -8/+0 |
|
|
* | Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. | Georg Brandl | 2008-06-04 | 1 | -0/+8 |
|
|
* | Refactor and clean up str.format() code (and helpers) in advance of optimizat... | Eric Smith | 2008-05-30 | 1 | -0/+6 |
|
|
* | Merged revisions 63078 via svnmerge from | Eric Smith | 2008-05-11 | 1 | -0/+11 |
|
|
* | Cleanup the Unicode header documentation and formatting a bit. | Marc-André Lemburg | 2008-04-29 | 1 | -11/+22 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-16 | 1 | -0/+4 |
|
|
* | Merged revisions 60408-60440 via svnmerge from | Christian Heimes | 2008-01-30 | 1 | -1/+8 |
|
|
* | Merged revisions 60284-60349 via svnmerge from | Christian Heimes | 2008-01-27 | 1 | -0/+2 |
|
|
* | Always define Py_USING_UNICODE, 3rd party software may depend on it. A missin... | Christian Heimes | 2008-01-07 | 1 | -0/+3 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -2/+2 |
|
|
* | Added all PyTypeObjects to the appropriate header files. | Christian Heimes | 2007-11-29 | 1 | -0/+1 |
|
|
* | Merged revisions 59056-59076 via svnmerge from | Christian Heimes | 2007-11-20 | 1 | -0/+7 |
|
|
* | Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. | Christian Heimes | 2007-11-04 | 1 | -0/+8 |
|
|
* | Patch #1272, by Christian Heimes and Alexandre Vassalotti. | Guido van Rossum | 2007-10-15 | 1 | -0/+16 |
|
|
* | Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but | Guido van Rossum | 2007-08-29 | 1 | -8/+13 |
|
|
* | PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico... | Eric Smith | 2007-08-27 | 1 | -3/+0 |
|
|
* | Fix refleaks in test_unicode and test_string related to the new format code. | Neal Norwitz | 2007-08-27 | 1 | -4/+2 |
|
|
* | PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje... | Eric Smith | 2007-08-26 | 1 | -2/+1 |
|
|
* | Implementation of PEP 3101, Advanced String Formatting. | Eric Smith | 2007-08-25 | 1 | -0/+5 |
|
|
* | Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and | Walter Dörwald | 2007-08-16 | 1 | -0/+82 |
|
|
* | Implement PEP 3131. Add isidentifier to str. | Martin v. Löwis | 2007-08-15 | 1 | -0/+6 |
|
|
* | Add XID_Start and XID_Continue properties to unicodectype. | Martin v. Löwis | 2007-08-14 | 1 | -0/+12 |
|
|
* | Whitespace normalization. | Neal Norwitz | 2007-08-08 | 1 | -12/+12 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -2/+2 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -4/+32 |
|
|
* | Add interning of unicode strings by copying the functionality from | Walter Dörwald | 2007-05-25 | 1 | -0/+15 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -0/+20 |
|
|
* | Add missing #define. | Walter Dörwald | 2007-05-18 | 1 | -0/+1 |
|
|
* | Add 'U'/'U#' format characters to Py_BuildValue (and thus | Walter Dörwald | 2007-05-18 | 1 | -1/+15 |
|
|
* | Add PyUnicode_FromString(), which create a unicode object from a | Walter Dörwald | 2007-05-05 | 1 | -0/+8 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -8/+0 |
|
|
* | Merged revisions 53875-53911 via svnmerge from | Thomas Wouters | 2007-02-25 | 1 | -1/+2 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -0/+24 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -0/+7 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 1 | -0/+5 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -9/+2 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -9/+39 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -46/+46 |
|
|
* | _PyUnicode_IsWhitespace(), | Tim Peters | 2005-10-29 | 1 | -2/+2 |
|
|