[1.1.X] Python 2.3 compatibility: we still need the special sets import here.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@13018 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey 2010-04-22 00:00:19 +00:00
parent af48cad39e
commit c8576fa674
1 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,11 @@ from django.utils import functional
from models import Reporter, Article
try:
set
except NameError:
from sets import Set as set # Python 2.3 fallback
#
# The introspection module is optional, so methods tested here might raise
# NotImplementedError. This is perfectly acceptable behavior for the backend