diff options
author | Skip Montanaro <skip@pobox.com> | 2002-03-27 13:42:50 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2002-03-27 13:42:50 (GMT) |
commit | 9e38c100ab6135b0f7953ee8cf4e47d85ddecbc8 (patch) | |
tree | ed1b8154b0ea19aaf5909097379d0715dbecf547 /Doc/api | |
parent | 0c766a0bb62877a1080acf3c70ca6ed393d9e7fc (diff) | |
download | cpython-9e38c100ab6135b0f7953ee8cf4e47d85ddecbc8.zip cpython-9e38c100ab6135b0f7953ee8cf4e47d85ddecbc8.tar.gz cpython-9e38c100ab6135b0f7953ee8cf4e47d85ddecbc8.tar.bz2 |
fix a typo in PyErr_Format table and add row for 'p' format char
closes bug 534495
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/exceptions.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/api/exceptions.tex b/Doc/api/exceptions.tex index 796291f..5bd9117 100644 --- a/Doc/api/exceptions.tex +++ b/Doc/api/exceptions.tex @@ -139,7 +139,8 @@ for each thread. \lineii{c}{Character, as an \ctype{int} parameter} \lineii{d}{Number in decimal, as an \ctype{int} parameter} \lineii{x}{Number in hexadecimal, as an \ctype{int} parameter} - \lineii{x}{A string, as a \ctype{char *} parameter} + \lineii{s}{A string, as a \ctype{char *} parameter} + \lineii{p}{A hex pointer, as a \ctype{void *} parameter} \end{tableii} An unrecognized format character causes all the rest of the format |