]> granicus.if.org Git - python/commitdiff
add matrix multiplication operator to correct lists (closes #22142)
authorBenjamin Peterson <benjamin@python.org>
Thu, 7 Aug 2014 05:50:30 +0000 (22:50 -0700)
committerBenjamin Peterson <benjamin@python.org>
Thu, 7 Aug 2014 05:50:30 +0000 (22:50 -0700)
Doc/reference/lexical_analysis.rst

index 6617c3b45519dba0a88e64c5d48cd7109fe8050f..699d91603533b9fb43e3cd87feb542014580cb96 100644 (file)
@@ -689,7 +689,7 @@ Operators
 
 The following tokens are operators::
 
-   +       -       *       **      /       //      %
+   +       -       *       **      /       //      %      @
    <<      >>      &       |       ^       ~
    <       >       <=      >=      ==      !=
 
@@ -705,7 +705,7 @@ The following tokens serve as delimiters in the grammar::
 
    (       )       [       ]       {       }
    ,       :       .       ;       @       =       ->
-   +=      -=      *=      /=      //=     %=
+   +=      -=      *=      /=      //=     %=      @=
    &=      |=      ^=      >>=     <<=     **=
 
 The period can also occur in floating-point and imaginary literals.  A sequence