Ticket #3744: generic_relations_warning.diff

File generic_relations_warning.diff, 1.1 KB (added by enlight, 18 years ago)
  • django/db/models/fields/generic.py

     
    11"""
    22Classes allowing "generic" relations through ContentType and object-id fields.
     3WARNING: This feature is a prototype, which means it's still under development
     4and is not as well tested as other aspects of Django. It is probably unwise to
     5attempt to use it in a production application.
    36"""
    47
    58from django import oldforms
  • tests/modeltests/generic_relations/models.py

     
    77
    88The canonical example is tags (although this example implementation is *far*
    99from complete).
     10
     11WARNING: This feature is a prototype, which means it's still under development
     12and is not as well tested as other aspects of Django. It is probably unwise to
     13attempt to use it in a production application.
    1014"""
    1115
    1216from django.db import models
Back to Top