With version 0.24.0, db/models/__init__.py contains (on line 44):
from .expressions import RawSQL as RawSQL
But (at least in Django 6.0.4 and 4.2.28), django/db/models/__init__.py does not actually import RawSQL. It imports a subset of the names from "expressions", but not RawSQL.
With version 0.24.0,
db/models/__init__.pycontains (on line 44):But (at least in Django 6.0.4 and 4.2.28),
django/db/models/__init__.pydoes not actually import RawSQL. It imports a subset of the names from "expressions", but not RawSQL.