]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Document <complex #>.conjugate().
authorFred Drake <fdrake@acm.org>
Fri, 12 Feb 1999 18:27:31 +0000 (18:27 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 12 Feb 1999 18:27:31 +0000 (18:27 +0000)
Doc/lib/libstdtypes.tex

index 4da90cd56f601b6bf4aec759ea7054bd234e2f32..ecc763ef05623e071d1e7e8e899ecfb26bff960e 100644 (file)
@@ -221,11 +221,13 @@ comparison operations):
   \lineiii{long(\var{x})}{\var{x} converted to long integer}{(2)}
   \lineiii{float(\var{x})}{\var{x} converted to floating point}{}
   \lineiii{complex(\var{re},\var{im})}{a complex number with real part \var{re}, imaginary part \var{im}.  \var{im} defaults to zero.}{}
+  \lineiii{\var{c}.conjugate()}{conjugate of the complex number \var{c}}{}
   \lineiii{divmod(\var{x}, \var{y})}{the pair \code{(\var{x} / \var{y}, \var{x} \%{} \var{y})}}{(3)}
   \lineiii{pow(\var{x}, \var{y})}{\var{x} to the power \var{y}}{}
   \lineiii{\var{x} ** \var{y}}{\var{x} to the power \var{y}}{}
 \end{tableiii}
 \indexiii{operations on}{numeric}{types}
+\withsubitem{(complex number method)}{\ttindex{conjugate()}}
 
 \noindent
 Notes: