From 409bb439edfb33d3c48ba2382b98af9187fdb261 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 27 Mar 2002 14:08:21 +0000 Subject: [PATCH] Backport Skip's patch for SF bug #534495: exceptions.tex 1.5 fix a typo in PyErr_Format table and add row for 'p' format char closes bug 534495 --- Doc/api/exceptions.tex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/api/exceptions.tex b/Doc/api/exceptions.tex index eaaafdd08215..046130d04528 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 -- 2.47.3