aboutsummaryrefslogtreecommitdiff
path: root/Objects/exceptions.c
AgeCommit message (Expand)Author
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2010-04-28Don't decode/recode the unicode filename in SyntaxError_str()Victor Stinner
2010-02-25plug reference leakBenjamin Peterson
2010-02-24Merged revisions 78418 via svnmerge fromEric Smith
2009-06-28Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,...Benjamin Peterson
2009-06-16Merged revisions 73447-73448 via svnmerge fromGeorg Brandl
2009-03-31Fix segfaults when running test_exceptions with coverage tracing, caused by w...Georg Brandl
2009-02-13Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,...Benjamin Peterson
2009-02-02Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson
2009-01-18Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 ...Benjamin Peterson
2008-08-07Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg
2008-07-05#3295 actually define PyExc_BufferErrorBenjamin Peterson
2008-06-11Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis
2008-05-26Renamed PyString to PyBytesChristian Heimes
2008-05-05Give with_traceback a docstring.Georg Brandl
2007-12-19#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes
2007-12-04Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis
2007-12-03Merged revisions 59275-59303 via svnmerge fromChristian Heimes
2007-12-03Reverting last commit. I had some staled data from an attempted svnmerge in m...Christian Heimes
2007-12-03Patch #1537 from Chad AustinChristian Heimes
2007-12-02Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes
2007-12-02#1535: rename __builtin__ module to builtins.Georg Brandl
2007-11-15Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller
2007-11-06Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum
2007-10-27Get rid of more uses of string and use unicodeNeal Norwitz
2007-09-08Merged revisions 57778-58052 via svnmerge fromThomas Wouters
2007-09-01Fix refleaks exposed by test_raise.Collin Winter
2007-08-31Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter
2007-08-26Use unicode and remove support for some uses of str8.Neal Norwitz
2007-08-19Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz
2007-08-18Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant
2007-07-21Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis
2007-07-18Change Py_BuildValue to generate Unicode objects forMartin v. Löwis
2007-06-20Patch by Ron Adam: Don't use u prefix in unicode error messagesWalter Dörwald
2007-06-18Merged revisions 55962-56019 via svnmerge fromGuido van Rossum
2007-06-13Merged revisions 55817-55961 via svnmerge fromGuido van Rossum
2007-06-05PyUnicode_FromFormat() does support %02x, so use itWalter Dörwald
2007-05-26Change tp_str implementations of exception classesWalter Dörwald
2007-05-19Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald
2007-05-18Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald
2007-05-18Add 'U'/'U#' format characters to Py_BuildValue (and thusWalter Dörwald
2007-05-17Merged revisions 55342-55406 via svnmerge fromGuido van Rossum
2007-05-14Merged revisions 55325-55327 via svnmerge fromGuido van Rossum
2007-05-04Change UnicodeDecodeError objects so that the 'object' attributeWalter Dörwald
2007-05-03Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum
2007-04-27Merged revisions 53952-54987 via svnmerge fromGuido van Rossum
2007-04-21PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl
2007-02-27Remove the ability to slice/index on exceptions per PEP 352.Brett Cannon
2007-02-26Remove the exceptions builtin module, all the exceptions are already builtin.Neal Norwitz
2007-02-25Merged revisions 53875-53911 via svnmerge fromThomas Wouters