'raise Exception' behaves the same as 'raise Exception()'
The python stdlib apparently uses a bunch of old-style ways of doing things. Instead of doing the throwing directly in the generated IR, call a runtime function raise1 which will take care of the semantics of checking the type of the raised object, etc.
Showing
Please register or sign in to comment