summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.h
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-04-26 20:26:14 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-04-26 20:26:14 +0300
commitcb9dc086a34a501dd05c439277eb79c93c4c02a0 (patch)
tree5727cdbae2cf222e008a778250f9f908785037bf /py/obj.h
parentdbc81df5d4822b3a0fc31ea1c5684b0101e193dd (diff)
downloadmicropython-cb9dc086a34a501dd05c439277eb79c93c4c02a0.tar.gz
micropython-cb9dc086a34a501dd05c439277eb79c93c4c02a0.zip
modio: Implement io.StringIO class.
Diffstat (limited to 'py/obj.h')
-rw-r--r--py/obj.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/obj.h b/py/obj.h
index 6bb264c1c3..8b835b28ee 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -292,6 +292,7 @@ extern const mp_obj_type_t mp_type_module;
extern const mp_obj_type_t mp_type_staticmethod;
extern const mp_obj_type_t mp_type_classmethod;
extern const mp_obj_type_t mp_type_property;
+extern const mp_obj_type_t mp_type_stringio;
// Exceptions
extern const mp_obj_type_t mp_type_BaseException;