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

Type-Hints später verwenden #147

Merged
merged 2 commits into from
Feb 11, 2025
Merged

Conversation

MHajoha
Copy link
Member

@MHajoha MHajoha commented Jan 14, 2025

Löst diesen Kommentar:

def get_mro_type_hint(klass: type, attr_name: str, bound: _T) -> _T:
    # FIXME: This function is called too early, when the classes referenced in forward refs may not be defined yet.

Fälle wie in tests/questionpy/test_attempt.py und tests/questionpy/test_qtype.py hatten bisher für einen Fehler gesorgt, weil wir die Type-Hints in __init_subclass__ resolven, was während der Klassen-Erstellung, also dort, wo die Subklasse definiert ist, aufgerufen wird. Zu dem Zeitpunkt könnten forward references a la options: "MyFormModel" aber noch ins leere zeigen, wenn MyFormModel erst darunter definiert wird.

Stattdessen habe ich die *_class-Attribute zu Klassen-Properties gemacht, sodass die forward references erst aufgelöst werden müssen, wenn sie das erste mal gebraucht werden.

Aus dem gleichen Grund kann ich auch validate_form nicht mehr in Question.__init_subclass__ verorten und habe es nach etwas hin- und herüberlegen nach QuestionTypeWrapper.__init__ geschoben.

Verified

This commit was signed with the committer’s verified signature.
sorccu Simo Kinnunen
Comment on lines +40 to +42
question_state_with_version_class: ClassVar[type[QuestionStateWithVersion]] = cached_class_property(
lambda cls: QuestionStateWithVersion[cls.options_class, cls.question_state_class] # type: ignore[name-defined]
)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NB: Keine Verwendung als Decorator (@cached_class_property), weil Mypy das nur versteht, wenn auch @classmethod dran ist, was dann wieder support in cached_class_property braucht, etc. So war es einfacher.

Verified

This commit was signed with the committer’s verified signature.
sorccu Simo Kinnunen
@MHajoha MHajoha requested a review from janbritz February 6, 2025 16:55
@MHajoha MHajoha merged commit 39ecb0b into dev Feb 11, 2025
6 checks passed
@MHajoha MHajoha deleted the forward-references-in-attempt-and-question branch February 11, 2025 13:39
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

Successfully merging this pull request may close these issues.

None yet

3 participants