Smart Terminal Convert from 2.7 to 3.6

From OpenCircuits
Revision as of 08:12, 12 March 2017 by Russ hensel (talk | contribs) (Created page with "= General = *'''[https://docs.python.org/3/whatsnew/3.0.html What’s New In Python 3.0 — Python 3.6.1rc1 documentation ]''' = Exceptions = *'''[https://www.python.org/de...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

General

Exceptions




        except Exception, ex_arg:

change to

        except Exception as ex_arg:

code