summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-04-13 03:41:04 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-04-13 03:41:04 (GMT)
commit5f5a69ba9d7f02edc2f4ad57612bee13b5f49deb (patch)
tree2b7eb279a8516426baf093dcdffb1ca8c95a6913 /Doc
parentba8194bd2a385d49da3e7d2f40622586ce77092c (diff)
downloadcpython-5f5a69ba9d7f02edc2f4ad57612bee13b5f49deb.zip
cpython-5f5a69ba9d7f02edc2f4ad57612bee13b5f49deb.tar.gz
cpython-5f5a69ba9d7f02edc2f4ad57612bee13b5f49deb.tar.bz2
Fix {} mismatch spotted by George Yoshida.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/whatsnew25.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex
index d509bc0..deb66f7 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"