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
Compilation of nose 1.3.7 on fails on python 3.12 due to changes in syntax of "except" statements. See: https://stackoverflow.com/questions/70648404/syntaxerror-multiple-exception-types-must-be-parenthesized
All statements with this syntax:
except NameError, nameerror:
Need to be reset as:
except NameError(nameerror):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Compilation of nose 1.3.7 on fails on python 3.12 due to changes in syntax of "except" statements. See: https://stackoverflow.com/questions/70648404/syntaxerror-multiple-exception-types-must-be-parenthesized
All statements with this syntax:
Need to be reset as:
The text was updated successfully, but these errors were encountered: