Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0dfd7a9

Browse files
committed
Missing parenthesis found by texcheck.py
1 parent a94568a commit 0dfd7a9

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Doc/lib/libfuncs.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ \section{Built-in Functions \label{built-in-funcs}}
713713

714714
\begin{funcdesc}{property}{\optional{fget\optional{, fset\optional{, fdel\optional{, doc}}}}}
715715
Return a property attribute for new-style classes (classes that
716-
derive from \function{object}.
716+
derive from \function{object}).
717717

718718
\var{fget} is a function for getting an attribute value, likewise
719719
\var{fset} is a function for setting, and \var{fdel} a function

Doc/lib/libstdtypes.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ \subsection{Mapping Types \label{typesmapping}}
10891089
\ttindex{pop()}
10901090
\ttindex{popitem()}
10911091
\ttindex{iteritems()}
1092-
\ttindex{iterkeys)}
1092+
\ttindex{iterkeys()}
10931093
\ttindex{itervalues()}}
10941094

10951095
\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
@@ -1450,7 +1450,7 @@ \subsubsection{Modules \label{typesmodules}}
14501450
table, but direct assignment to the \member{__dict__} attribute is not
14511451
possible (you can write \code{\var{m}.__dict__['a'] = 1}, which
14521452
defines \code{\var{m}.a} to be \code{1}, but you can't write
1453-
\code{\var{m}.__dict__ = \{\}}.
1453+
\code{\var{m}.__dict__ = \{\}}).
14541454

14551455
Modules built into the interpreter are written like this:
14561456
\code{<module 'sys' (built-in)>}. If loaded from a file, they are

Doc/lib/liburllib2.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ \subsection{OpenerDirector Objects \label{opener-director-objects}}
297297
optionally passing the given \var{data}.
298298
Arguments, return values and exceptions raised are the same as those
299299
of \function{urlopen()} (which simply calls the \method{open()} method
300-
on the default installed \class{OpenerDirector}.
300+
on the default installed \class{OpenerDirector}).
301301
\end{methoddesc}
302302

303303
\begin{methoddesc}[OpenerDirector]{error}{proto\optional{,

0 commit comments

Comments
 (0)