We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sig_on
try:
sig_on_no_except
Looking at the documentation, the following two appears to be functionally the same:
data = malloc(...) try: sig_on() except KeyboardInterrupt: free(data) raise compute(data) sig_off()
and
data = malloc(...) if not sig_on_no_except(): free(data) cython_check_exception() compute(data) sig_off()
Is there any difference? If not, then what's the advantage of sig_on_no_except()?
sig_on_no_except()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Looking at the documentation, the following two appears to be functionally the same:
and
Is there any difference? If not, then what's the advantage of
sig_on_no_except()
?The text was updated successfully, but these errors were encountered: