summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.h
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-02-23 23:18:36 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-02-23 23:20:16 +0200
commit71ebd4b7f0b88fc0ceb36d8c2464a5114470f5a0 (patch)
tree5dbe2286da42eea430459f1d3d373ca99386ec21 /py/obj.h
parent70b31608719e77b810017619ef41ef0783126483 (diff)
downloadmicropython-71ebd4b7f0b88fc0ceb36d8c2464a5114470f5a0.tar.gz
micropython-71ebd4b7f0b88fc0ceb36d8c2464a5114470f5a0.zip
py: Implement UnicodeError.
Still too shy to implement UnicodeEncodeError which was really needed for micropython-lib case.
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 3a9a6431c2..db42e795a2 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -369,6 +369,7 @@ extern const mp_obj_type_t mp_type_StopIteration;
extern const mp_obj_type_t mp_type_SyntaxError;
extern const mp_obj_type_t mp_type_SystemExit;
extern const mp_obj_type_t mp_type_TypeError;
+extern const mp_obj_type_t mp_type_UnicodeError;
extern const mp_obj_type_t mp_type_ValueError;
extern const mp_obj_type_t mp_type_ZeroDivisionError;