diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-08-07 05:50:30 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-08-07 05:50:30 (GMT) |
commit | bd592417f436be0dfdfda3248ec469c1f8c20dff (patch) | |
tree | 305a5025cd21b5c7b641cf18dfbff8d4a7082816 /Doc | |
parent | b40cf1f80490c48b087a50a83bcaa032ce6cdbd6 (diff) | |
download | cpython-bd592417f436be0dfdfda3248ec469c1f8c20dff.zip cpython-bd592417f436be0dfdfda3248ec469c1f8c20dff.tar.gz cpython-bd592417f436be0dfdfda3248ec469c1f8c20dff.tar.bz2 |
add matrix multiplication operator to correct lists (closes #22142)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 6617c3b..699d916 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -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 |