diff options
author | Damien George <damien.p.george@gmail.com> | 2014-10-22 19:42:55 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-10-22 19:42:55 +0100 |
commit | e7a478204a984f9f79a99700375d961be6d28a96 (patch) | |
tree | b975cc3e81b2f002a2b131f3b3fb1c371ea535c9 /py/builtintables.c | |
parent | efa04eafd3525d958ccfa75257e6ab572b82f97a (diff) |
py: Remove unused and unneeded SystemError exception.
It's purpose is for internal errors that are not catastrophic (ie not as
bad as RuntimeError). Since we don't use it, we don't need it.
Diffstat (limited to 'py/builtintables.c')
-rw-r--r-- | py/builtintables.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/py/builtintables.c b/py/builtintables.c index b67ef0516..0e5daf6d8 100644 --- a/py/builtintables.c +++ b/py/builtintables.c @@ -136,7 +136,6 @@ STATIC const mp_map_elem_t mp_builtin_object_table[] = { { MP_OBJ_NEW_QSTR(MP_QSTR_RuntimeError), (mp_obj_t)&mp_type_RuntimeError }, { MP_OBJ_NEW_QSTR(MP_QSTR_StopIteration), (mp_obj_t)&mp_type_StopIteration }, { MP_OBJ_NEW_QSTR(MP_QSTR_SyntaxError), (mp_obj_t)&mp_type_SyntaxError }, - { MP_OBJ_NEW_QSTR(MP_QSTR_SystemError), (mp_obj_t)&mp_type_SystemError }, { MP_OBJ_NEW_QSTR(MP_QSTR_SystemExit), (mp_obj_t)&mp_type_SystemExit }, { MP_OBJ_NEW_QSTR(MP_QSTR_TypeError), (mp_obj_t)&mp_type_TypeError }, { MP_OBJ_NEW_QSTR(MP_QSTR_ValueError), (mp_obj_t)&mp_type_ValueError }, |