Commit ee2b07c7 authored by Karen Tracey's avatar Karen Tracey
Browse files

[1.1.X] Added Pyton 2.3 compatibility import for use of set by some new tests.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12961 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent eca89ea9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
import unittest
try:
    set
except NameError:
    from sets import Set as set

from django.db import DatabaseError, connection
from django.db.models import Count