[Python] What is the purpose of having @odp.base_constructor if it's being assigned to subclass constructors as well? #168
Answered
by
olimorris
anthony-S93
asked this question in
Q&A
-
I assume the purpose of @olimorris This seems a bit counter-intuitive to me and I was hoping someone can provide an explanation. |
Beta Was this translation helpful? Give feedback.
Answered by
olimorris
Mar 12, 2023
Replies: 1 comment 9 replies
-
Referencing the
It allows the scheme to reference |
Beta Was this translation helpful? Give feedback.
9 replies
Answer selected by
olimorris
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Referencing the
after/queries/python/highlights.scm
file:It allows the scheme to reference
__new__
and__init__
directly. Perhaps it should have been calledodp.initializer
?