/tests/regressiontests/admin_scripts/app_with_import/models.py

https://code.google.com/p/mango-py/ · Python · 7 lines · 4 code · 1 blank · 2 comment · 0 complexity · c60737b1e916c6cdce88da913c615b1d MD5 · raw file

  1. from django.contrib.comments.models import Comment
  2. from django.db import models
  3. # Regression for #13368. This is an example of a model
  4. # that imports a class that has an abstract base class.
  5. class CommentScore(models.Model):
  6. comment = models.OneToOneField(Comment, primary_key=True)