mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-05 00:41:00 +01:00
add ellipsis
This commit is contained in:
parent
7a636430a6
commit
0c9d1bd5f3
1 changed files with 2 additions and 1 deletions
|
@ -21,7 +21,8 @@ for kw in kwlist:
|
|||
#operators
|
||||
op_map = {
|
||||
# punctuation
|
||||
',': 'COMMA', '.': 'PERIOD', ';': 'SEMI', ':': 'COLON',
|
||||
',': 'COMMA', '.': 'PERIOD', ';': 'SEMI', ':': 'COLON',
|
||||
'...': 'ELLIPSIS',
|
||||
#basic operators
|
||||
'+': 'PLUS', '-': 'MINUS', '*': 'TIMES', '/': 'DIVIDE',
|
||||
'//': 'DOUBLEDIV', '%': 'MOD', '**': 'POW', '|': 'PIPE',
|
||||
|
|
Loading…
Add table
Reference in a new issue