(Contributed by George Yoshida.)
7 49
8 64
9 81
->>> 8 in db
+>>> '8' in db
True
>>> db.sync()
0
\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}{}
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]
\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: