mirror of
https://github.com/django/django.git
synced 2024-11-18 07:26:04 +00:00
829dc3c5a6
Python 2.6 has some different behaviour when checking isinstance(foo, collections.Iterator).
14 lines
262 B
Python
14 lines
262 B
Python
from django.db import models
|
|
|
|
|
|
class Category(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
|
|
def next(self):
|
|
return self
|
|
|
|
|
|
class Thing(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
category = models.ForeignKey(Category)
|