summaryrefslogtreecommitdiff
path: root/Python/errors.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-071-2/+5
* Issue #19512: add _PyUnicode_CompareWithId() functionVictor Stinner2013-11-071-1/+1
* Issue #19512: add some common identifiers to only create common strings once,Victor Stinner2013-11-061-1/+1
* Don't export internal symbols ("make smelly")Antoine Pitrou2013-10-121-1/+1
* Factor-out the common code for setting a KeyError.Raymond Hettinger2013-09-021-0/+14
* Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-2/+2
* Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-15/+41
* Issue #18664, #18408: Rewrite PyErr_WriteUnraisable() to handle errorsVictor Stinner2013-08-261-40/+62
* Issue #18520: PyErr_NoMemory() now fails with a fatal error if it is calledVictor Stinner2013-07-221-0/+6
* Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now failVictor Stinner2013-07-181-0/+11
* Issue #18408: Fix PyErr_SetImportError(), handle PyDict_SetItemString() failureVictor Stinner2013-07-171-2/+5
* Issue #18408: Fix PyErr_NormalizeException(), handle PyObject_IsSubclass() fa...Victor Stinner2013-07-171-1/+10
* Issue #18408: errors.c: in debug mode, calling PyErr_BadInternalCall() nowVictor Stinner2013-07-121-0/+1
* Issue #15767: Revert 3a50025f1900 for ModuleNotFoundErrorBrett Cannon2013-07-041-22/+3
* Issue #15767: Touch up ModuleNotFoundError usage by import.Brett Cannon2013-06-121-3/+22
* Issue #16719: Get rid of WindowsError. Use OSError insteadAndrew Svetlov2012-12-191-3/+3
* Issue #7317: Display full tracebacks when an error occurs asynchronously.Andrew Svetlov2012-11-031-7/+8
* Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.Martin v. Löwis2012-04-191-0/+33
* Fix it for good :-)Antoine Pitrou2012-04-181-3/+1
* fix refcnt/style/debuging oversightsBenjamin Peterson2012-04-181-5/+7
* Fix email post-commit review comments.Brian Curtin2012-04-181-8/+11
* Fix #14600. Correct reference handling and naming of ImportError convenience ...Brian Curtin2012-04-171-27/+20
* Issue #1559549: Add 'name' and 'path' attributes to ImportError.Brett Cannon2012-04-121-0/+47
* 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