mirror of
https://github.com/django/django.git
synced 2025-11-01 04:17:59 +00:00
Fixed a bunch of Python 2.3 issues. Two tests still fail, but this fixes the bulk of things.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6183 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
fa5e935af0
commit
ea3e89cb1d
4 changed files with 14 additions and 2 deletions
|
|
@ -4,6 +4,13 @@ import os, sys, traceback
|
|||
import unittest
|
||||
|
||||
import django.contrib as contrib
|
||||
|
||||
try:
|
||||
set
|
||||
except NameError:
|
||||
from sets import Set as set # For Python 2.3
|
||||
|
||||
|
||||
CONTRIB_DIR_NAME = 'django.contrib'
|
||||
MODEL_TESTS_DIR_NAME = 'modeltests'
|
||||
REGRESSION_TESTS_DIR_NAME = 'regressiontests'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue