[Python-checkins] r45333 - python/trunk/Doc/whatsnew/whatsnew25.tex
neal.norwitz
python-checkins at python.org
Thu Apr 13 05:41:04 CEST 2006
Author: neal.norwitz
Date: Thu Apr 13 05:41:04 2006
New Revision: 45333
Modified:
python/trunk/Doc/whatsnew/whatsnew25.tex
Log:
Fix {} mismatch spotted by George Yoshida.
Modified: python/trunk/Doc/whatsnew/whatsnew25.tex
==============================================================================
--- python/trunk/Doc/whatsnew/whatsnew25.tex (original)
+++ python/trunk/Doc/whatsnew/whatsnew25.tex Thu Apr 13 05:41:04 2006
@@ -1135,7 +1135,7 @@
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"
More information about the Python-checkins
mailing list