plasma-disassembler / plasma

Plasma is an interactive disassembler for x86/ARM/MIPS. It can generates indented pseudo-code with colored syntax.
GNU General Public License v3.0
3.05k stars 277 forks source link

Improved exception handling #10

Closed dnet closed 9 years ago

dnet commented 9 years ago

I removed all catch-all except clauses (e.g. those that doesn't specify a base class like except:) and replaced them with either a base class that doesn't catch exceptions like KeyboardInterrupt which should never be caught by an application, or other constructions such as dict.get and proper equality check w.r.t None.

ghost commented 9 years ago

Thanks !