Skip to content
New issue

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

python 3.12 compilation fails on "except" syntax #1129

Open
nkadel opened this issue Apr 23, 2024 · 0 comments
Open

python 3.12 compilation fails on "except" syntax #1129

nkadel opened this issue Apr 23, 2024 · 0 comments

Comments

@nkadel
Copy link

nkadel commented Apr 23, 2024

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):
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant