]> granicus.if.org Git - python/commitdiff
It turns out that Guido does not like or encourage the use of the term
authorFred Drake <fdrake@acm.org>
Fri, 6 Oct 2000 19:39:47 +0000 (19:39 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 6 Oct 2000 19:39:47 +0000 (19:39 +0000)
"disciplines" for the __*__() methods, so they should be referred to as
"methods" or "special methods", as appropriate in context.

Doc/lib/libcopy.tex
Doc/lib/liboperator.tex

index 091d411bf13356433797961782e282ffe4808cdd..446f53bacd497aeade1503fe6478bc3797f0047a 100644 (file)
@@ -93,6 +93,6 @@ argument and the memo dictionary as second argument.
 \withsubitem{(copy protocol)}{\ttindex{__copy__()}\ttindex{__deepcopy__()}}
 
 \begin{seealso}
-\seemodule{pickle}{Discussion of the special disciplines used to
+\seemodule{pickle}{Discussion of the special mmethds used to
 support object state retrieval and restoration.}
 \end{seealso}
index 69ae23b048f78fa7aa23d1c2fda965a7e1ca3711..cf42133b61c59ab0d0a6dbc033109c02c6fda303 100644 (file)
@@ -89,8 +89,8 @@ Return the bitwise exclusive or of \var{a} and \var{b}.
 \begin{funcdesc}{not_}{o}
 \funcline{__not__}{o}
 Return the outcome of \keyword{not} \var{o}.  (Note that there is no
-\method{__not__()} discipline for object instances; only the
-interpreter core defines this operation.)
+\method{__not__()} method for object instances; only the interpreter
+core defines this operation.)
 \end{funcdesc}
 
 \begin{funcdesc}{truth}{o}