From ea4d1a8e6821c591bccd3b1d87ac30e72af3bd7f Mon Sep 17 00:00:00 2001 From: "neal.norwitz" Date: Thu, 13 Apr 2006 03:41:04 +0000 Subject: [PATCH] Fix {} mismatch spotted by George Yoshida. git-svn-id: http://svn.python.org/projects/python/trunk@45333 6015fed2-1504-0410-9fe1-9d1591cc4771 --- Doc/whatsnew/whatsnew25.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.11.4.GIT