summaryrefslogtreecommitdiff
path: root/py/parse.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-22 18:12:43 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-22 18:12:43 +0000
commit20773971186151b53426bd607908546598036a16 (patch)
treec74ee3ac2f07061a820355bac0bea075e0177fa8 /py/parse.h
parent2613ffde431594f3fe0562042c32105623fbe4dc (diff)
py: Put number parsing code together in parsenum.c.
Diffstat (limited to 'py/parse.h')
-rw-r--r--py/parse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/parse.h b/py/parse.h
index 6492f4d9e..135de47d1 100644
--- a/py/parse.h
+++ b/py/parse.h
@@ -8,7 +8,7 @@ struct _mp_lexer_t;
// - xx...x00110: an integer; bits 5 and above are the qstr holding the value
// - xx...x01010: a decimal; bits 5 and above are the qstr holding the value
// - xx...x01110: a string; bits 5 and above are the qstr holding the value
-// - xx...x10010: a string with triple quotes; bits 5 and above are the qstr holding the value
+// - xx...x10010: a string of bytes; bits 5 and above are the qstr holding the value
// - xx...x10110: a token; bits 5 and above are mp_token_kind_t
// TODO: these can now be unified with MP_OBJ_FITS_SMALL_INT(x)