summaryrefslogtreecommitdiffstats
path: root/Doc/api/exceptions.tex
Commit message (Collapse)AuthorAgeFilesLines
* [Bug #948970] Add PyExc_* symbols to index.Andrew M. Kuchling2004-06-291-28/+28
| | | | | (I ran this through texcheck, but don't have LaTeX installed on this machine and therefore haven't verified that the changes are accepted by LaTeX.)
* minor wording cleanupFred Drake2004-05-121-1/+1
|
* Remove note that PyErr_SetInterrupt() is obsolete; add comment about theFred Drake2004-03-251-1/+3
| | | | | fact that it was marked obsolete but is still needed. Closes SF bug #919299. Someone else should backport this to Python 2.3.
* SF patch #838938: Typos in the docs (Extending/Embedding + Python/C API)Raymond Hettinger2003-12-071-3/+2
| | | | (Contributed by Florent Rougon.)
* SF bug #719367, string exceptions are deprecatedNeal Norwitz2003-05-291-2/+2
| | | | Remove references to string based exceptions in the doc.
* Typo fix.Greg Ward2003-05-291-1/+1
|
* Typo: propogate -> propagateThomas Heller2002-12-061-1/+1
| | | | Bugfix candidate.
* Correct the description of PyErr_Restore().Fred Drake2002-10-241-3/+3
| | | | Closes SF bug #577000.
* Ok, read the source this time: PyErr_SetObject() does not steal a reference.Fred Drake2002-09-251-1/+1
|
* Clarify documentation for PyErr_SetObject() to describe the referenceFred Drake2002-09-241-1/+1
| | | | count behavior.
* Document PyExc_FutureWarningBarry Warsaw2002-08-141-4/+4
|
* New functions for extension writers on Windows:Thomas Heller2002-07-291-0/+16
| | | | | | | | | | PyErr_SetExcFromWindowsErr(), PyErr_SetExcFromWindowsErrWithFilename(). Similar to PyErr_SetFromWindowsErrWithFilename() and PyErr_SetFromWindowsErr(), but they allow to specify the exception type to raise. Available on Windows. See SF patch #576458.
* Minor markup adjustments, consistency changes, and shorten a longFred Drake2002-07-021-12/+13
| | | | line.
* Docs for PyErr_SetFromWindowsErrWithFilename() andThomas Heller2002-07-021-0/+23
| | | | | PyErr_SetFromWindowsErr(). Fixes SF# 576016, with additional markup.
* fix a typo in PyErr_Format table and add row for 'p' format charSkip Montanaro2002-03-271-1/+2
| | | | closes bug 534495
* Fix example for PyErr_SetFromErrno() (need to pass exception type).Neil Schemenauer2002-03-231-2/+2
|
* Clarify that the Python runtime may behave mysteriously when an exceptionFred Drake2001-12-031-4/+12
| | | | | is not handled properly. This closes SF bug #485153.
* PyErr_Format() does not return a new reference; it always returns NULL.Fred Drake2001-12-031-7/+5
| | | | This closes SF bug #488387.
* Break the Python/C API manual into smaller files by chapter. This manualFred Drake2001-10-121-0/+353
has grown beyond what font-lock will work with using the default (X)Emacs settings. Indentation of the description has been made consistent, and a number of smaller markup adjustments have been made as well.