Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Delete the LaTeX doc tree. | Georg Brandl | 2007-08-15 | 1 | -442/+0 |
| | |||||
* | Patch #1592072: fix docs for return value of PyErr_CheckSignals. | Georg Brandl | 2006-11-08 | 1 | -1/+1 |
| | |||||
* | Slightly revised version of patch #1538956: | Marc-André Lemburg | 2006-08-14 | 1 | -4/+5 |
| | | | | | | | | | | Replace UnicodeDecodeErrors raised during == and != compares of Unicode and other objects with a new UnicodeWarning. All other comparisons continue to raise exceptions. Exceptions other than UnicodeDecodeErrors are also left untouched. | ||||
* | Fix function name. | Georg Brandl | 2006-07-31 | 1 | -1/+1 |
| | |||||
* | Document PyErr_WarnEx. (Bad Neal! No biscuit!) | Andrew M. Kuchling | 2006-07-31 | 1 | -2/+16 |
| | | | | | | | | | Is the explanation of the 'stacklevel' parameter clear? Please feel free to edit it. I don't have LaTeX installed on this machine, so haven't verified that the markup is correct. Will check tonight, or maybe the automatic doc build will tell me. | ||||
* | Exception isn't the root of all exception classes anymore. | Georg Brandl | 2006-05-26 | 1 | -2/+3 |
| | |||||
* | PyErr_NewException now accepts a tuple of base classes as its | Georg Brandl | 2006-05-23 | 1 | -1/+2 |
| | | | | "base" parameter. | ||||
* | Typo repair. | Tim Peters | 2006-05-13 | 1 | -1/+1 |
| | |||||
* | Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV | Tim Peters | 2006-05-13 | 1 | -10/+29 |
| | | | | | | | | | | | | about "%u", "%lu" and "%zu" formats. Since PyString_FromFormat and PyErr_Format have exactly the same rules (both inherited from PyString_FromFormatV), it would be good if someone with more LaTeX Fu changed one of them to just point to the other. Their docs were way out of synch before this patch, and I just did a mass copy+paste to repair that. Not a backport candidate (this is a new feature). | ||||
* | Document PEP 352 changes. Also added GeneratorExit. | Brett Cannon | 2006-03-01 | 1 | -2/+6 |
| | |||||
* | Make documentation match the implementation. | Martin v. Löwis | 2006-03-01 | 1 | -5/+6 |
| | |||||
* | [Bug #948970] Add PyExc_* symbols to index. | Andrew M. Kuchling | 2004-06-29 | 1 | -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 cleanup | Fred Drake | 2004-05-12 | 1 | -1/+1 |
| | |||||
* | Remove note that PyErr_SetInterrupt() is obsolete; add comment about the | Fred Drake | 2004-03-25 | 1 | -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 Hettinger | 2003-12-07 | 1 | -3/+2 |
| | | | | (Contributed by Florent Rougon.) | ||||
* | SF bug #719367, string exceptions are deprecated | Neal Norwitz | 2003-05-29 | 1 | -2/+2 |
| | | | | Remove references to string based exceptions in the doc. | ||||
* | Typo fix. | Greg Ward | 2003-05-29 | 1 | -1/+1 |
| | |||||
* | Typo: propogate -> propagate | Thomas Heller | 2002-12-06 | 1 | -1/+1 |
| | | | | Bugfix candidate. | ||||
* | Correct the description of PyErr_Restore(). | Fred Drake | 2002-10-24 | 1 | -3/+3 |
| | | | | Closes SF bug #577000. | ||||
* | Ok, read the source this time: PyErr_SetObject() does not steal a reference. | Fred Drake | 2002-09-25 | 1 | -1/+1 |
| | |||||
* | Clarify documentation for PyErr_SetObject() to describe the reference | Fred Drake | 2002-09-24 | 1 | -1/+1 |
| | | | | count behavior. | ||||
* | Document PyExc_FutureWarning | Barry Warsaw | 2002-08-14 | 1 | -4/+4 |
| | |||||
* | New functions for extension writers on Windows: | Thomas Heller | 2002-07-29 | 1 | -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 long | Fred Drake | 2002-07-02 | 1 | -12/+13 |
| | | | | line. | ||||
* | Docs for PyErr_SetFromWindowsErrWithFilename() and | Thomas Heller | 2002-07-02 | 1 | -0/+23 |
| | | | | | PyErr_SetFromWindowsErr(). Fixes SF# 576016, with additional markup. | ||||
* | fix a typo in PyErr_Format table and add row for 'p' format char | Skip Montanaro | 2002-03-27 | 1 | -1/+2 |
| | | | | closes bug 534495 | ||||
* | Fix example for PyErr_SetFromErrno() (need to pass exception type). | Neil Schemenauer | 2002-03-23 | 1 | -2/+2 |
| | |||||
* | Clarify that the Python runtime may behave mysteriously when an exception | Fred Drake | 2001-12-03 | 1 | -4/+12 |
| | | | | | is not handled properly. This closes SF bug #485153. | ||||
* | PyErr_Format() does not return a new reference; it always returns NULL. | Fred Drake | 2001-12-03 | 1 | -7/+5 |
| | | | | This closes SF bug #488387. | ||||
* | Break the Python/C API manual into smaller files by chapter. This manual | Fred Drake | 2001-10-12 | 1 | -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. |