summaryrefslogtreecommitdiffstatshomepage
path: root/py/lexer.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-04 18:44:46 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-04 18:44:46 +0000
commite9906ac3d771a312b05d76e42aee8e806dd0d128 (patch)
tree95cd30d3a32e715fc2c9553ba1ccb1a72bf86dd8 /py/lexer.c
parent4d4bc9533edf3f82c5d19b79be9891521b267837 (diff)
downloadmicropython-e9906ac3d771a312b05d76e42aee8e806dd0d128.tar.gz
micropython-e9906ac3d771a312b05d76e42aee8e806dd0d128.zip
Add ellipsis object.
Diffstat (limited to 'py/lexer.c')
-rw-r--r--py/lexer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/lexer.c b/py/lexer.c
index 4df91b0365..d4205236c3 100644
--- a/py/lexer.c
+++ b/py/lexer.c
@@ -239,7 +239,7 @@ static const uint8_t tok_enc_kind[] = {
MP_TOKEN_OP_CARET, MP_TOKEN_DEL_CARET_EQUAL,
MP_TOKEN_DEL_EQUAL, MP_TOKEN_OP_DBL_EQUAL,
MP_TOKEN_OP_NOT_EQUAL,
- MP_TOKEN_DEL_PERIOD, MP_TOKEN_ELLIPSES,
+ MP_TOKEN_DEL_PERIOD, MP_TOKEN_ELLIPSIS,
};
// must have the same order as enum in lexer.h