diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-04 18:44:46 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-04 18:44:46 +0000 |
commit | e9906ac3d771a312b05d76e42aee8e806dd0d128 (patch) | |
tree | 95cd30d3a32e715fc2c9553ba1ccb1a72bf86dd8 /py/obj.h | |
parent | 4d4bc9533edf3f82c5d19b79be9891521b267837 (diff) | |
download | micropython-e9906ac3d771a312b05d76e42aee8e806dd0d128.tar.gz micropython-e9906ac3d771a312b05d76e42aee8e806dd0d128.zip |
Add ellipsis object.
Diffstat (limited to 'py/obj.h')
-rw-r--r-- | py/obj.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -110,6 +110,7 @@ extern const mp_obj_type_t mp_const_type; extern const mp_obj_t mp_const_none; extern const mp_obj_t mp_const_false; extern const mp_obj_t mp_const_true; +extern const mp_obj_t mp_const_ellipsis; extern const mp_obj_t mp_const_stop_iteration; // special object indicating end of iteration (not StopIteration exception!) // Need to declare this here so we are not dependent on map.h |