Commit 832a25b7 authored by Raymond Hettinger's avatar Raymond Hettinger

Missing parenthesis found by texcheck.py

parent 9669ceba
...@@ -713,7 +713,7 @@ class C: ...@@ -713,7 +713,7 @@ class C:
\begin{funcdesc}{property}{\optional{fget\optional{, fset\optional{, fdel\optional{, doc}}}}} \begin{funcdesc}{property}{\optional{fget\optional{, fset\optional{, fdel\optional{, doc}}}}}
Return a property attribute for new-style classes (classes that Return a property attribute for new-style classes (classes that
derive from \function{object}. derive from \function{object}).
\var{fget} is a function for getting an attribute value, likewise \var{fget} is a function for getting an attribute value, likewise
\var{fset} is a function for setting, and \var{fdel} a function \var{fset} is a function for setting, and \var{fdel} a function
......
...@@ -1089,7 +1089,7 @@ arbitrary objects): ...@@ -1089,7 +1089,7 @@ arbitrary objects):
\ttindex{pop()} \ttindex{pop()}
\ttindex{popitem()} \ttindex{popitem()}
\ttindex{iteritems()} \ttindex{iteritems()}
\ttindex{iterkeys)} \ttindex{iterkeys()}
\ttindex{itervalues()}} \ttindex{itervalues()}}
\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes} \begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
...@@ -1450,7 +1450,7 @@ Modifying this dictionary will actually change the module's symbol ...@@ -1450,7 +1450,7 @@ Modifying this dictionary will actually change the module's symbol
table, but direct assignment to the \member{__dict__} attribute is not table, but direct assignment to the \member{__dict__} attribute is not
possible (you can write \code{\var{m}.__dict__['a'] = 1}, which possible (you can write \code{\var{m}.__dict__['a'] = 1}, which
defines \code{\var{m}.a} to be \code{1}, but you can't write defines \code{\var{m}.a} to be \code{1}, but you can't write
\code{\var{m}.__dict__ = \{\}}. \code{\var{m}.__dict__ = \{\}}).
Modules built into the interpreter are written like this: Modules built into the interpreter are written like this:
\code{<module 'sys' (built-in)>}. If loaded from a file, they are \code{<module 'sys' (built-in)>}. If loaded from a file, they are
......
...@@ -297,7 +297,7 @@ Open the given \var{url} (which can be a request object or a string), ...@@ -297,7 +297,7 @@ Open the given \var{url} (which can be a request object or a string),
optionally passing the given \var{data}. optionally passing the given \var{data}.
Arguments, return values and exceptions raised are the same as those Arguments, return values and exceptions raised are the same as those
of \function{urlopen()} (which simply calls the \method{open()} method of \function{urlopen()} (which simply calls the \method{open()} method
on the default installed \class{OpenerDirector}. on the default installed \class{OpenerDirector}).
\end{methoddesc} \end{methoddesc}
\begin{methoddesc}[OpenerDirector]{error}{proto\optional{, \begin{methoddesc}[OpenerDirector]{error}{proto\optional{,
......
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