Open snoopyjc opened 2 years ago
The code generated for open calls sys.exit() on any exception raised by open. Perl semantics are that open silently fails if it can't open the file. These semantics should be preserved in the generated code.
sys.exit()
Fixed in https://github.com/snoopyjc/pythonizer
The code generated for open calls
sys.exit()
on any exception raised by open. Perl semantics are that open silently fails if it can't open the file. These semantics should be preserved in the generated code.