From: Neal Norwitz Date: Thu, 13 Apr 2006 03:41:04 +0000 (+0000) Subject: Fix {} mismatch spotted by George Yoshida. X-Git-Tag: v2.5a2~285 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5f5a69ba9d7f02edc2f4ad57612bee13b5f49deb;p=python Fix {} mismatch spotted by George Yoshida. --- diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex index d509bc01c6..deb66f7792 100644 --- a/Doc/whatsnew/whatsnew25.tex +++ b/Doc/whatsnew/whatsnew25.tex @@ -1135,7 +1135,7 @@ with a segmentation fault.) You shouldn't use \function{c_char_p} with a Python string when the C function will be modifying the memory area, because Python strings are supposed to be immutable; breaking this rule will cause puzzling bugs. When you need a modifiable memory area, -use \function{create_string_buffer(): +use \function{create_string_buffer()}: \begin{verbatim} s = "this is a string"