summaryrefslogtreecommitdiffstats
path: root/Python/errors.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #13560: Locale codec functions use the classic "errors" parameter,Victor Stinner2011-12-171-1/+1
* Issue #13560: os.strerror() now uses the current locale encoding instead of U...Victor Stinner2011-12-171-8/+9
* Issue #13575: there is only one class type.Florent Xicluna2011-12-121-1/+1
* Instantiate the OS-related exception as soon as we raise it, so that "except"Victor Stinner2011-10-171-5/+9
* Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.Martin v. Löwis2011-10-141-10/+16
* Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
* Instantiate the OS-related exception as soon as we raise it, so thatAntoine Pitrou2011-10-121-6/+10
* PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou2011-10-121-4/+5
* Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-1/+2
* Implement PEP 393.Martin v. Löwis2011-09-281-2/+2
* Issue #10780: PyErr_SetFromWindowsErrWithFilename() andVictor Stinner2010-12-281-2/+2
* Issue #5437: A preallocated MemoryError instance should not hold tracebackAntoine Pitrou2010-10-281-23/+1
* Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ...Georg Brandl2010-10-241-2/+4
* PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead ofVictor Stinner2010-10-171-1/+1
* add PyErr_SyntaxLocationEx, to support adding a column offsetBenjamin Peterson2010-09-201-1/+17
* Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#Victor Stinner2010-06-071-1/+1
* Make PyErr_Occurred return NULL if there is no current thread. Previously itJeffrey Yasskin2010-05-131-3/+8
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-641/+641
* PyErr_SetFromErrnoWithFilename() decodes the filename usingVictor Stinner2010-05-081-1/+1
* Poor PLAN9, it isn't supportedAntoine Pitrou2010-02-221-9/+0
* Merged revisions 77088 via svnmerge fromGeorg Brandl2009-12-281-0/+35
* Merged revisions 72698-72699 via svnmerge fromHirokazu Yamamoto2009-05-171-6/+2
* Merged revisions 71024,71058 via svnmerge fromGeorg Brandl2009-04-111-1/+9
* Issue 3611: in some cases (a __del__ re-raising an exception, when called fro...Amaury Forgeot d'Arc2008-08-291-5/+9
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-261-2/+3
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* Correct one of the "MemoryError oddities":Amaury Forgeot d'Arc2008-07-311-0/+10
* Merged revisions 65320 via svnmerge fromBenjamin Peterson2008-07-311-3/+12
* implement chained exception tracebacksBenjamin Peterson2008-07-151-2/+20
* Implicit exception chaining via __context__ (PEP 3134).Guido van Rossum2008-06-141-2/+31
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-131-64/+0
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-1/+1
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-1/+1
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-151-1/+1
* Fixes for issue 1752184, ensuring type objects are always createdGuido van Rossum2007-11-021-1/+1
* Minor cleanup of the comment for PyErr_ProgramText() and a tweak to the codeGuido van Rossum2007-10-101-7/+10
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-0/+8
* Patch #1075: Use wide API to format error messages.Martin v. Löwis2007-09-031-32/+57
* Add const to some strings that are not modifiedNeal Norwitz2007-08-241-5/+5
* Use unicode for much of errors.Neal Norwitz2007-08-241-7/+7
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-121-11/+0
* Three patches by Amaury Forgeot d'Arc; SF patch# 1754484.Guido van Rossum2007-07-161-4/+4
* Revert a wrong commit.Thomas Heller2007-07-111-1/+1
* Must create heaptypes with unicode names.Thomas Heller2007-07-111-1/+1
* Change PyErr_Format() to generate a unicode string (by usingWalter Dörwald2007-05-251-6/+4
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-3/+3
* Remove the exceptions builtin module, all the exceptions are already builtin.Neal Norwitz2007-02-261-1/+2
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-1/+2