built-in modules for DES and IDEA encryption, provides a Python module
for reading and decrypting PGP files, and then some. These modules
are not distributed with Python but available separately. See the URL
-\file{http://www.magnet.com/~amk/python/pct.html} or send email to
+\file{http://www.magnet.com/\~amk/python/pct.html} or send email to
\file{amk@magnet.com} for more information.
\index{PGP}
\indexii{DES}{cipher}
\end{opcodedesc}
\begin{opcodedesc}{UNARY_INVERT}{}
-Implements \code{TOS = ~TOS}.
+Implements \code{TOS = \~TOS}.
\end{opcodedesc}
Binary operations remove the top of the stack (TOS) and the second top-most
fd = sys.stdin.fileno()
old = termios.tcgetattr(fd)
new = termios.tcgetattr(fd)
- new[3] = new[3] & ~TERMIOS.ECHO # lflags
+ new[3] = new[3] & \~TERMIOS.ECHO # lflags
try:
termios.tcsetattr(fd, TERMIOS.TCSADRAIN, new)
passwd = raw_input(prompt)
The priorities of the binary bit-wise operations are all lower than
the numeric operations and higher than the comparisons; the unary
-operation \samp{~} has the same priority as the other unary numeric
+operation \samp{\~} has the same priority as the other unary numeric
operations (\samp{+} and \samp{-}).
This table lists the bit-string operations sorted in ascending
built-in modules for DES and IDEA encryption, provides a Python module
for reading and decrypting PGP files, and then some. These modules
are not distributed with Python but available separately. See the URL
-\file{http://www.magnet.com/~amk/python/pct.html} or send email to
+\file{http://www.magnet.com/\~amk/python/pct.html} or send email to
\file{amk@magnet.com} for more information.
\index{PGP}
\indexii{DES}{cipher}
\end{opcodedesc}
\begin{opcodedesc}{UNARY_INVERT}{}
-Implements \code{TOS = ~TOS}.
+Implements \code{TOS = \~TOS}.
\end{opcodedesc}
Binary operations remove the top of the stack (TOS) and the second top-most
fd = sys.stdin.fileno()
old = termios.tcgetattr(fd)
new = termios.tcgetattr(fd)
- new[3] = new[3] & ~TERMIOS.ECHO # lflags
+ new[3] = new[3] & \~TERMIOS.ECHO # lflags
try:
termios.tcsetattr(fd, TERMIOS.TCSADRAIN, new)
passwd = raw_input(prompt)
The priorities of the binary bit-wise operations are all lower than
the numeric operations and higher than the comparisons; the unary
-operation \samp{~} has the same priority as the other unary numeric
+operation \samp{\~} has the same priority as the other unary numeric
operations (\samp{+} and \samp{-}).
This table lists the bit-string operations sorted in ascending