mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-17 04:10:24 +00:00
When subclassing Django will copy managers from the ancestor class. Copying in turn calls `copy.copy()` which checks whether the object uses `__slots__` or `__dict__`. This could result in the manager calling `self.get_queryset()` before all models get registered with the ORM. |
||
|---|---|---|
| .. | ||
| tests | ||
| __init__.py | ||
| choices.py | ||
| fields.py | ||
| managers.py | ||
| models.py | ||
| tracker.py | ||