[Python-checkins] CVS: python/dist/src/Doc/ref ref2.tex,1.28,1.29

Fred L. Drake fdrake@users.sourceforge.net
Tue, 07 Aug 2001 22:37:23 -0700


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

Modified Files:
	ref2.tex 
Log Message:

"Thin" version of floor division docs:  add // to the list of operators
and //= to the list of other delimiter tokens.

I'll work on it again when it's not so late...


Index: ref2.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref2.tex,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** ref2.tex	2001/07/20 15:33:23	1.28
--- ref2.tex	2001/08/08 05:37:21	1.29
***************
*** 564,568 ****
  
  \begin{verbatim}
! +       -       *       **      /       %
  <<      >>      &       |       ^       ~
  <       >       <=      >=      ==      !=      <>
--- 564,568 ----
  
  \begin{verbatim}
! +       -       *       **      /       //      %
  <<      >>      &       |       ^       ~
  <       >       <=      >=      ==      !=      <>
***************
*** 582,587 ****
  (       )       [       ]       {       }
  ,       :       .       `       =       ;
! +=      -=      *=      /=      %=      **=
! &=      |=      ^=      >>=     <<=
  \end{verbatim}
  
--- 582,587 ----
  (       )       [       ]       {       }
  ,       :       .       `       =       ;
! +=      -=      *=      /=      //=     %=
! &=      |=      ^=      >>=     <<=     **=
  \end{verbatim}