Ticket #3744: generic_relations_warning.diff
File generic_relations_warning.diff, 1.1 KB (added by , 18 years ago) |
---|
-
django/db/models/fields/generic.py
1 1 """ 2 2 Classes allowing "generic" relations through ContentType and object-id fields. 3 WARNING: This feature is a prototype, which means it's still under development 4 and is not as well tested as other aspects of Django. It is probably unwise to 5 attempt to use it in a production application. 3 6 """ 4 7 5 8 from django import oldforms -
tests/modeltests/generic_relations/models.py
7 7 8 8 The canonical example is tags (although this example implementation is *far* 9 9 from complete). 10 11 WARNING: This feature is a prototype, which means it's still under development 12 and is not as well tested as other aspects of Django. It is probably unwise to 13 attempt to use it in a production application. 10 14 """ 11 15 12 16 from django.db import models