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/qstrdefs.h | |
parent | efa04eafd3525d958ccfa75257e6ab572b82f97a (diff) | |
download | micropython-e7a478204a984f9f79a99700375d961be6d28a96.tar.gz micropython-e7a478204a984f9f79a99700375d961be6d28a96.zip |
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/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index c10b2fabac..0f520719f1 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -117,7 +117,6 @@ Q(OSError) Q(OverflowError) Q(RuntimeError) Q(SyntaxError) -Q(SystemError) Q(SystemExit) Q(TypeError) Q(UnboundLocalError) |