Skip to content
Snippets Groups Projects
Commit ca6a2def authored by Laurent Peuch's avatar Laurent Peuch
Browse files

[doc] mark matrix operator as done

parent 5e1b4dc7
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -70,6 +70,26 @@ Baron: https://github.com/PyCQA/baron/pull/121
 
.. image:: ./grammar_diff/ellipsis_in_from_import.png
 
Matrix operator
---------------
Python 3.5
Baron: https://github.com/PyCQA/baron/pull/117
::
ADD '@' and '@=' to the lexer
ADD '@=' in augassign
ADD '@' in term
::
augassign: ('+=' | '-=' | '*=' | '@=' | '/=' | '%=' | '&=' | '|=' | '^=' |
'<<=' | '>>=' | '**=' | '//=')
term: factor (('*'|'@'|'/'|'%'|'//') factor)*
TODO
====
 
Loading
Loading
@@ -287,24 +307,6 @@ After:
power: atom_expr ['**' factor]
atom_expr: [AWAIT] atom trailer*
 
Matrix operator
---------------
Python 3.5
::
ADD '@' and '@=' to the lexer
ADD '@=' in augassign
ADD '@' in term
::
augassign: ('+=' | '-=' | '*=' | '@=' | '/=' | '%=' | '&=' | '|=' | '^=' |
'<<=' | '>>=' | '**=' | '//=')
term: factor (('*'|'@'|'/'|'%'|'//') factor)*
Kwargs expressions
------------------
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment