1
0
mirror of https://github.com/django/django.git synced 2025-10-28 16:16:12 +00:00

Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.

Thanks Vinay Sajip for the support of his django3 branch and
Jannis Leidel for the review.
This commit is contained in:
Claude Paroz
2012-06-07 18:08:47 +02:00
parent 706fd9adc0
commit 4a103086d5
401 changed files with 6647 additions and 6157 deletions

View File

@@ -1,4 +1,4 @@
from __future__ import absolute_import
from __future__ import absolute_import, unicode_literals
from django.core.exceptions import FieldError
from django.db.models import F
@@ -77,17 +77,17 @@ class ExpressionsTests(TestCase):
company_query, [
{
'num_chairs': 2302,
'name': u'Example Inc.',
'name': 'Example Inc.',
'num_employees': 2300
},
{
'num_chairs': 5,
'name': u'Foobar Ltd.',
'name': 'Foobar Ltd.',
'num_employees': 3
},
{
'num_chairs': 34,
'name': u'Test GmbH',
'name': 'Test GmbH',
'num_employees': 32
}
],
@@ -102,17 +102,17 @@ class ExpressionsTests(TestCase):
company_query, [
{
'num_chairs': 6900,
'name': u'Example Inc.',
'name': 'Example Inc.',
'num_employees': 2300
},
{
'num_chairs': 9,
'name': u'Foobar Ltd.',
'name': 'Foobar Ltd.',
'num_employees': 3
},
{
'num_chairs': 96,
'name': u'Test GmbH',
'name': 'Test GmbH',
'num_employees': 32
}
],
@@ -127,17 +127,17 @@ class ExpressionsTests(TestCase):
company_query, [
{
'num_chairs': 5294600,
'name': u'Example Inc.',
'name': 'Example Inc.',
'num_employees': 2300
},
{
'num_chairs': 15,
'name': u'Foobar Ltd.',
'name': 'Foobar Ltd.',
'num_employees': 3
},
{
'num_chairs': 1088,
'name': u'Test GmbH',
'name': 'Test GmbH',
'num_employees': 32
}
],