summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-07-12 04:42:30 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-07-12 04:42:30 (GMT)
commita685f522566edb585db2c9598b8cc36417e9fe95 (patch)
tree178e0ce86d3bcef2bece43862484af932cb019d9 /Doc/whatsnew
parent6122d0267f37b2122a96fbe824efef3ae019266a (diff)
downloadcpython-a685f522566edb585db2c9598b8cc36417e9fe95.zip
cpython-a685f522566edb585db2c9598b8cc36417e9fe95.tar.gz
cpython-a685f522566edb585db2c9598b8cc36417e9fe95.tar.bz2
Fix missing parenthesis
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/whatsnew23.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew23.tex b/Doc/whatsnew/whatsnew23.tex
index 007cf08..8b3fc61 100644
--- a/Doc/whatsnew/whatsnew23.tex
+++ b/Doc/whatsnew/whatsnew23.tex
@@ -2145,7 +2145,7 @@ than using \constant{METH_NOARGS}.
\item A new function, \cfunction{PyObject_DelItemString(\var{mapping},
char *\var{key})} was added
as shorthand for
-\code{PyObject_DelItem(\var{mapping}, PyString_New(\var{key})}.
+\code{PyObject_DelItem(\var{mapping}, PyString_New(\var{key}))}.
\item The \method{xreadlines()} method of file objects, introduced in
Python 2.1, is no longer necessary because files now behave as their