Commit fb23cafe authored by Raymond Hettinger's avatar Raymond Hettinger

Fix missing parenthesis

parent aad42377
...@@ -2145,7 +2145,7 @@ than using \constant{METH_NOARGS}. ...@@ -2145,7 +2145,7 @@ than using \constant{METH_NOARGS}.
\item A new function, \cfunction{PyObject_DelItemString(\var{mapping}, \item A new function, \cfunction{PyObject_DelItemString(\var{mapping},
char *\var{key})} was added char *\var{key})} was added
as shorthand for 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 \item The \method{xreadlines()} method of file objects, introduced in
Python 2.1, is no longer necessary because files now behave as their Python 2.1, is no longer necessary because files now behave as their
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment