The title is pretty self explanatory -- what\'s the difference between:
raise Exception, \"foo\"
and
raise Exception(\"foo\") <
both amount to the same thing in Python2. in Python3, the raise Exception, "foo" syntax is no longer supported.
raise Exception, "foo"