From: Raymond Hettinger Date: Sun, 7 Dec 2003 13:05:15 +0000 (+0000) Subject: SF patch #855195: fix typos X-Git-Tag: v2.3.3~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=97061ea1178d126f89cfb1ae845a4c120620e687;p=thirdparty%2FPython%2Fcpython.git SF patch #855195: fix typos (Contributed by George Yoshida.) --- diff --git a/Doc/lib/libbsddb.tex b/Doc/lib/libbsddb.tex index 59dbeb96479f..ffafeae73e90 100644 --- a/Doc/lib/libbsddb.tex +++ b/Doc/lib/libbsddb.tex @@ -199,7 +199,7 @@ Example: 7 49 8 64 9 81 ->>> 8 in db +>>> '8' in db True >>> db.sync() 0 diff --git a/Doc/lib/libcurses.tex b/Doc/lib/libcurses.tex index 296e8874fcaf..8378e7656bbb 100644 --- a/Doc/lib/libcurses.tex +++ b/Doc/lib/libcurses.tex @@ -362,7 +362,7 @@ Leave cbreak mode. Return to normal ``cooked'' mode with line buffering. \end{funcdesc} \begin{funcdesc}{noecho}{} -Leave echo mode. Echoing of input characters is turned off, +Leave echo mode. Echoing of input characters is turned off. \end{funcdesc} \begin{funcdesc}{nonl}{} diff --git a/Doc/lib/libfcntl.tex b/Doc/lib/libfcntl.tex index 6eccb4a5b641..ca8cc1971c01 100644 --- a/Doc/lib/libfcntl.tex +++ b/Doc/lib/libfcntl.tex @@ -87,7 +87,7 @@ The module defines the following functions: An example: \begin{verbatim} ->>> import array, fnctl, struct, termios, os +>>> import array, fcntl, struct, termios, os >>> os.getpgrp() 13341 >>> struct.unpack('h', fcntl.ioctl(0, termios.TIOCGPGRP, " "))[0] diff --git a/Doc/lib/libitertools.tex b/Doc/lib/libitertools.tex index 596406f176de..7481b6194b26 100644 --- a/Doc/lib/libitertools.tex +++ b/Doc/lib/libitertools.tex @@ -76,6 +76,7 @@ by functions or loops that truncate the stream. \begin{funcdesc}{count}{\optional{n}} Make an iterator that returns consecutive integers starting with \var{n}. + If not specified \var{n} defaults to zero. Does not currently support python long integers. Often used as an argument to \function{imap()} to generate consecutive data points. Also, used with \function{izip()} to add sequence numbers. Equivalent to: