mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds. Thanks to timo and claudep for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13094 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7202eb8e31
commit
5211f48ae3
59 changed files with 32 additions and 3399 deletions
|
@ -1,11 +1,6 @@
|
|||
# coding: utf-8
|
||||
from django.db import models
|
||||
|
||||
try:
|
||||
sorted
|
||||
except NameError:
|
||||
from django.utils.itercompat import sorted # For Python 2.3
|
||||
|
||||
class Author(models.Model):
|
||||
name = models.CharField(max_length=100)
|
||||
age = models.IntegerField()
|
||||
|
@ -48,10 +43,7 @@ class Store(models.Model):
|
|||
# Different backends and numbers.
|
||||
__test__ = {'API_TESTS': """
|
||||
>>> from django.core import management
|
||||
>>> try:
|
||||
... from decimal import Decimal
|
||||
... except:
|
||||
... from django.utils._decimal import Decimal
|
||||
>>> from decimal import Decimal
|
||||
>>> from datetime import date
|
||||
|
||||
# Reset the database representation of this app.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue