| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -10/+16 |
|
|
* | SystemExit_init(): avoid an useless test | Victor Stinner | 2011-05-26 | 1 | -1/+1 |
|
|
* | Issue #5437: A preallocated MemoryError instance should not hold traceback | Antoine Pitrou | 2010-10-28 | 1 | -10/+87 |
|
|
* | Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ... | Georg Brandl | 2010-10-24 | 1 | -0/+10 |
|
|
* | Merged revisions 82157 via svnmerge from | Benjamin Peterson | 2010-06-22 | 1 | -3/+0 |
|
|
* | Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# | Victor Stinner | 2010-06-07 | 1 | -2/+2 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -22/+22 |
|
|
* | Don't decode/recode the unicode filename in SyntaxError_str() | Victor Stinner | 2010-04-28 | 1 | -20/+34 |
|
|
* | plug reference leak | Benjamin Peterson | 2010-02-25 | 1 | -1/+1 |
|
|
* | Merged revisions 78418 via svnmerge from | Eric Smith | 2010-02-24 | 1 | -34/+79 |
|
|
* | Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,... | Benjamin Peterson | 2009-06-28 | 1 | -2/+2 |
|
|
* | Merged revisions 73447-73448 via svnmerge from | Georg Brandl | 2009-06-16 | 1 | -1/+0 |
|
|
* | Fix segfaults when running test_exceptions with coverage tracing, caused by w... | Georg Brandl | 2009-03-31 | 1 | -9/+57 |
|
|
* | Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,... | Benjamin Peterson | 2009-02-13 | 1 | -34/+0 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -1/+1 |
|
|
* | Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 ... | Benjamin Peterson | 2009-01-18 | 1 | -1/+1 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -1/+1 |
|
|
* | #3295 actually define PyExc_BufferError | Benjamin Peterson | 2008-07-05 | 1 | -0/+2 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -1/+1 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -6/+6 |
|
|
* | Give with_traceback a docstring. | Georg Brandl | 2008-05-05 | 1 | -1/+6 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -12/+12 |
|
|
* | Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. | Martin v. Löwis | 2007-12-04 | 1 | -3/+7 |
|
|
* | Merged revisions 59275-59303 via svnmerge from | Christian Heimes | 2007-12-03 | 1 | -2/+2 |
|
|
* | Reverting last commit. I had some staled data from an attempted svnmerge in m... | Christian Heimes | 2007-12-03 | 1 | -2/+2 |
|
|
* | Patch #1537 from Chad Austin | Christian Heimes | 2007-12-03 | 1 | -2/+2 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -4/+4 |
|
|
* | #1535: rename __builtin__ module to builtins. | Georg Brandl | 2007-12-02 | 1 | -1/+1 |
|
|
* | Replace PyObject_Unicode with PyObject_Str everywhere, and remove the | Thomas Heller | 2007-11-15 | 1 | -3/+3 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -37/+78 |
|
|
* | Get rid of more uses of string and use unicode | Neal Norwitz | 2007-10-27 | 1 | -1/+1 |
|
|
* | Merged revisions 57778-58052 via svnmerge from | Thomas Wouters | 2007-09-08 | 1 | -0/+29 |
|
|
* | Fix refleaks exposed by test_raise. | Collin Winter | 2007-09-01 | 1 | -1/+5 |
|
|
* | Issue #1066: implement PEP 3109, 2/3 of PEP 3134. | Collin Winter | 2007-08-31 | 1 | -1/+97 |
|
|
* | Use unicode and remove support for some uses of str8. | Neal Norwitz | 2007-08-26 | 1 | -4/+1 |
|
|
* | Code review of the new buffer protocol. Mostly add questions that should | Neal Norwitz | 2007-08-19 | 1 | -0/+2 |
|
|
* | Merged in py3k-buffer branch to main line. All objects now use the buffer pr... | Travis E. Oliphant | 2007-08-18 | 1 | -0/+5 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -26/+19 |
|
|
* | Change Py_BuildValue to generate Unicode objects for | Martin v. Löwis | 2007-07-18 | 1 | -8/+12 |
|
|
* | Patch by Ron Adam: Don't use u prefix in unicode error messages | Walter Dörwald | 2007-06-20 | 1 | -6/+6 |
|
|
* | Merged revisions 55962-56019 via svnmerge from | Guido van Rossum | 2007-06-18 | 1 | -156/+92 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -40/+30 |
|
|
* | PyUnicode_FromFormat() does support %02x, so use it | Walter Dörwald | 2007-06-05 | 1 | -17/+14 |
|
|
* | Change tp_str implementations of exception classes | Walter Dörwald | 2007-05-26 | 1 | -223/+35 |
|
|
* | Add a format specifier %R to PyUnicode_FromFormat(), which embeds | Walter Dörwald | 2007-05-19 | 1 | -14/+1 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -5/+5 |
|
|
* | Add 'U'/'U#' format characters to Py_BuildValue (and thus | Walter Dörwald | 2007-05-18 | 1 | -66/+51 |
|
|
* | Merged revisions 55342-55406 via svnmerge from | Guido van Rossum | 2007-05-17 | 1 | -56/+1 |
|
|
* | Merged revisions 55325-55327 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -8/+34 |
|
|
* | Change UnicodeDecodeError objects so that the 'object' attribute | Walter Dörwald | 2007-05-04 | 1 | -8/+24 |
|
|