| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #16096: Fix several occurrences of potential signed integer overflow. ... | Mark Dickinson | 2012-10-06 | 1 | -2/+2 |
|
|
* | #13406: fix more deprecation warnings and move the deprecation of unicode-int... | Ezio Melotti | 2011-11-17 | 1 | -5/+5 |
|
|
* | #13406: silence deprecation warnings in test_codecs. | Ezio Melotti | 2011-11-16 | 1 | -1/+1 |
|
|
* | Plug some (unlikely) refleaks. | Antoine Pitrou | 2011-11-12 | 1 | -15/+45 |
|
|
* | Fix and deprecated the unicode_internal codec | Victor Stinner | 2011-11-10 | 1 | -4/+16 |
|
|
* | Fix build on Windows | Victor Stinner | 2011-11-10 | 1 | -0/+4 |
|
|
* | Port encoders from Py_UNICODE API to unicode object API. | Martin v. Löwis | 2011-11-10 | 1 | -76/+46 |
|
|
* | Port UCS1 and charmap codecs to new API. | Martin v. Löwis | 2011-11-02 | 1 | -5/+1 |
|
|
* | Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore | Victor Stinner | 2011-10-18 | 1 | -0/+50 |
|
|
* | Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 | Victor Stinner | 2011-10-14 | 1 | -3/+2 |
|
|
* | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -5/+3 |
|
|
* | Issue #9642: Uniformize the tests on the availability of the mbcs codec | Victor Stinner | 2011-07-04 | 1 | -5/+5 |
|
|
* | Merged revisions 81860 via svnmerge from | Antoine Pitrou | 2010-06-09 | 1 | -98/+98 |
|
|
* | Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing format | Victor Stinner | 2010-06-08 | 1 | -16/+0 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -377/+377 |
|
|
* | Merged revisions 79779 via svnmerge from | Philip Jenvey | 2010-04-05 | 1 | -1/+1 |
|
|
* | Merged revisions 72404-72406 via svnmerge from | Walter Dörwald | 2009-05-06 | 1 | -1/+2 |
|
|
* | Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-... | Benjamin Peterson | 2009-03-21 | 1 | -1/+1 |
|
|
* | Issue #4874: Most builtin decoders now reject unicode input. | Antoine Pitrou | 2009-01-22 | 1 | -14/+14 |
|
|
* | merge from trunk | Benjamin Peterson | 2008-10-11 | 1 | -1/+1 |
|
|
* | Merged revisions 65654 via svnmerge from | Martin v. Löwis | 2008-08-13 | 1 | -152/+127 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -2/+14 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -13/+13 |
|
|
* | Merged revisions 59056-59076 via svnmerge from | Christian Heimes | 2007-11-20 | 1 | -6/+13 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -10/+9 |
|
|
* | Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and | Walter Dörwald | 2007-08-16 | 1 | -0/+204 |
|
|
* | Merged revisions 56443-56466 via svnmerge from | Guido van Rossum | 2007-07-20 | 1 | -4/+5 |
|
|
* | Change readbuffer_encode() and charbuffer_encode() to | Walter Dörwald | 2007-06-22 | 1 | -8/+4 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -1/+1 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -11/+47 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -18/+0 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -1/+2 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -5/+10 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 1 | -0/+10 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -51/+15 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -11/+7 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -23/+48 |
|
|
* | Whitespace cleanup. | Walter Dörwald | 2005-11-02 | 1 | -27/+27 |
|
|
* | SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain | Walter Dörwald | 2005-08-30 | 1 | -2/+2 |
|
|
* | Build with --disable-unicode again. Fixes #1158607. | Martin v. Löwis | 2005-03-08 | 1 | -0/+14 |
|
|
* | SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support | Walter Dörwald | 2004-09-07 | 1 | -24/+57 |
|
|
* | Change some declarations from ``char *`` to ``const char *``. Also added | Brett Cannon | 2004-07-10 | 1 | -6/+8 |
|
|
* | Add generic codecs.encode() and .decode() APIs that don't impose | Marc-André Lemburg | 2004-07-10 | 1 | -4/+72 |
|
|
* | Fix for [ 543344 ] Interpreter crashes when recoding; suggested | Marc-André Lemburg | 2003-02-04 | 1 | -1/+3 |
|
|
* | Add docstrings to register, lookup, register_error | Walter Dörwald | 2002-10-31 | 1 | -4/+36 |
|
|
* | PEP 293 implemention (from SF patch http://www.python.org/sf/432401) | Walter Dörwald | 2002-09-02 | 1 | -0/+28 |
|
|
* | Patch #505705: Remove eval in pickle and cPickle. | Martin v. Löwis | 2002-08-14 | 1 | -1/+45 |
|
|
* | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 1 | -1/+1 |
|
|
* | Patch #569753: Remove support for WIN16. | Martin v. Löwis | 2002-06-30 | 1 | -5/+5 |
|
|
* | Patch #477750: Use METH_ constants in Modules. | Martin v. Löwis | 2002-01-17 | 1 | -29/+29 |
|
|