[Python-checkins] python/dist/src/Doc/ref ref3.tex,1.82.4.3,1.82.4.4

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 19 Jun 2002 23:18:28 -0700


Update of /cvsroot/python/python/dist/src/Doc/ref
In directory usw-pr-cvs1:/tmp/cvs-serv4630

Modified Files:
      Tag: release22-maint
	ref3.tex 
Log Message:
SF 563530 added missing methods for emulating numeric types

Index: ref3.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref3.tex,v
retrieving revision 1.82.4.3
retrieving revision 1.82.4.4
diff -C2 -d -r1.82.4.3 -r1.82.4.4
*** ref3.tex	4 Jun 2002 16:29:24 -0000	1.82.4.3
--- ref3.tex	20 Jun 2002 06:18:26 -0000	1.82.4.4
***************
*** 1403,1406 ****
--- 1403,1408 ----
  \methodline[numeric object]{__rmul__}{self, other}
  \methodline[numeric object]{__rdiv__}{self, other}
+ \methodline[numeric object]{__rtruediv__}{self, other}
+ \methodline[numeric object]{__rfloordiv__}{self, other}		     
  \methodline[numeric object]{__rmod__}{self, other}
  \methodline[numeric object]{__rdivmod__}{self, other}
***************
*** 1431,1434 ****
--- 1433,1438 ----
  \methodline[numeric object]{__imul__}{self, other}
  \methodline[numeric object]{__idiv__}{self, other}
+ \methodline[numeric object]{__itruediv__}{self, other}
+ \methodline[numeric object]{__ifloordiv__}{self, other}		     
  \methodline[numeric object]{__imod__}{self, other}
  \methodline[numeric object]{__ipow__}{self, other\optional{, modulo}}