- Notifications
You must be signed in to change notification settings - Fork748
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. |
BetaWas this translation helpful?Give feedback.
All reactions
Answered by filmorFeb 6, 2025
Instead ofsomething.except
you can writegetattr(something, "except")
.
Replies: 1 comment 1 reply
-
Instead of |
BetaWas this translation helpful?Give feedback.
All reactions
1 reply
-
That worked. Thanks! |
BetaWas this translation helpful?Give feedback.
All reactions
Answer selected byfilmor
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment