Keyword collision
#2545
-
What can one do if, when using a .NET library in a python code, one of the identifiers in the .NET library is a python keyword. When I try to run the code that references that identifier, I get a syntax error. Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
filmor
Feb 6, 2025
Replies: 1 comment 1 reply
-
Instead of |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
filmor
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instead of
something.except
you can writegetattr(something, "except")
.