#13392 closed (invalid)
Bug introduced with #12977 : can't copy fields with metaclass
Reported by: | Stephane "Twidi" Angel | Owned by: | nobody |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | 1.2-beta |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
I'm using django-transmeta to create fields for many langs
Say i have a field "description" and with the metaclass provided by django-transmeta, this field is transformed in description_fr + description_en and so on.
But with commit #12977, it doesn't work anymore, as the work is done by copying field (in the __new__
method of the Transmeta metaclass), and at this stage, fields have not models and then __setstate__
(in db/models/fields/__init__.py) fails (because of self.model)
No idea how to make a clean copy of the field without copy.copy...
Change History (4)
comment:1 by , 15 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
This should have been solved in [13005]. Update your copy of trunk and re-open if it's still broken.