From 32b8c3e1c015902b72ef7caade5c35a10e80fb1a Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sun, 13 Jul 2008 08:48:18 +0000 Subject: Fixed #7718 -- Added a naive implementation of sorted() for Python 2.3 compatibility, and modified test cases to import the function when required. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7914 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- .../regressiontests/admin_scripts/management/commands/app_command.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/regressiontests/admin_scripts/management/commands/app_command.py') diff --git a/tests/regressiontests/admin_scripts/management/commands/app_command.py b/tests/regressiontests/admin_scripts/management/commands/app_command.py index f72e912ac0..3d8c43755c 100644 --- a/tests/regressiontests/admin_scripts/management/commands/app_command.py +++ b/tests/regressiontests/admin_scripts/management/commands/app_command.py @@ -1,4 +1,9 @@ from django.core.management.base import AppCommand +# Python 2.3 doesn't have sorted() +try: + sorted +except NameError: + from django.utils.itercompat import sorted class Command(AppCommand): help = 'Test Application-based commands' -- cgit v1.3