summaryrefslogtreecommitdiff
path: root/Objects/exceptions.c
Commit message (Expand)AuthorAgeFilesLines
* Fix OSError.__init__ and OSError.__new__ so that each of them can beAntoine Pitrou2011-12-151-57/+159
* Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()Victor Stinner2011-11-211-2/+2
* UnicodeTranslateError uses the new Unicode APIVictor Stinner2011-11-211-3/+3
* UnicodeEncodeError uses the new Unicode APIVictor Stinner2011-11-201-3/+3
* Port error handlers from Py_UNICODE indexing to code point indexing.Martin v. Löwis2011-11-041-0/+5
* PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou2011-10-121-184/+349
* Fix my_basename(): make the string readyVictor Stinner2011-10-051-2/+7
* Implement PEP 393.Martin v. Löwis2011-09-281-10/+16
* SystemExit_init(): avoid an useless testVictor Stinner2011-05-261-1/+1
* Issue #5437: A preallocated MemoryError instance should not hold tracebackAntoine Pitrou2010-10-281-10/+87
* Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ...Georg Brandl2010-10-241-0/+10
* Merged revisions 82157 via svnmerge fromBenjamin Peterson2010-06-221-3/+0
* Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#Victor Stinner2010-06-071-2/+2
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-22/+22
* Don't decode/recode the unicode filename in SyntaxError_str()Victor Stinner2010-04-281-20/+34
* plug reference leakBenjamin Peterson2010-02-251-1/+1
* Merged revisions 78418 via svnmerge fromEric Smith2010-02-241-34/+79
* Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,...Benjamin Peterson2009-06-281-2/+2
* Merged revisions 73447-73448 via svnmerge fromGeorg Brandl2009-06-161-1/+0
* Fix segfaults when running test_exceptions with coverage tracing, caused by w...Georg Brandl2009-03-311-9/+57
* Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,...Benjamin Peterson2009-02-131-34/+0
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 ...Benjamin Peterson2009-01-181-1/+1
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* #3295 actually define PyExc_BufferErrorBenjamin Peterson2008-07-051-0/+2
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-1/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-261-6/+6
* Give with_traceback a docstring.Georg Brandl2008-05-051-1/+6
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-12/+12
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-3/+7
* Merged revisions 59275-59303 via svnmerge fromChristian Heimes2007-12-031-2/+2
* Reverting last commit. I had some staled data from an attempted svnmerge in m...Christian Heimes2007-12-031-2/+2
* Patch #1537 from Chad AustinChristian Heimes2007-12-031-2/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-4/+4
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-1/+1
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-3/+3
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-37/+78
* Get rid of more uses of string and use unicodeNeal Norwitz2007-10-271-1/+1
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-0/+29
* Fix refleaks exposed by test_raise.Collin Winter2007-09-011-1/+5
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-311-1/+97
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-4/+1
* Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz2007-08-191-0/+2
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-0/+5
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-26/+19
* Change Py_BuildValue to generate Unicode objects forMartin v. Löwis2007-07-181-8/+12
* Patch by Ron Adam: Don't use u prefix in unicode error messagesWalter Dörwald2007-06-201-6/+6
* Merged revisions 55962-56019 via svnmerge fromGuido van Rossum2007-06-181-156/+92
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-40/+30
* PyUnicode_FromFormat() does support %02x, so use itWalter Dörwald2007-06-051-17/+14