From a7d608d1cff4ca8ba70e6d80f8d4be442884912c Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 8 Aug 2001 05:37:21 +0000 Subject: [PATCH] "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... --- Doc/ref/ref2.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/ref/ref2.tex b/Doc/ref/ref2.tex index 02c05cdc4a9..0e4ea26ea7e 100644 --- a/Doc/ref/ref2.tex +++ b/Doc/ref/ref2.tex @@ -563,7 +563,7 @@ The following tokens are operators: \index{operators} \begin{verbatim} -+ - * ** / % ++ - * ** / // % << >> & | ^ ~ < > <= >= == != <> \end{verbatim} @@ -581,8 +581,8 @@ The following tokens serve as delimiters in the grammar: \begin{verbatim} ( ) [ ] { } , : . ` = ; -+= -= *= /= %= **= -&= |= ^= >>= <<= ++= -= *= /= //= %= +&= |= ^= >>= <<= **= \end{verbatim} The period can also occur in floating-point and imaginary literals. A