From a800036981c6fea8eb3dac22467965c71af05d29 Mon Sep 17 00:00:00 2001 From: Alasdair Nicol Date: Fri, 18 Oct 2013 10:02:43 +0100 Subject: [PATCH] Fixed #21287 -- Fixed E123 pep8 warnings --- django/contrib/admin/filters.py | 4 +-- django/contrib/admin/options.py | 2 +- .../management/commands/changepassword.py | 2 +- django/contrib/auth/tests/test_forms.py | 30 +++++++++---------- django/contrib/auth/tests/test_views.py | 8 ++--- django/contrib/contenttypes/generic.py | 2 +- .../flatpages/tests/test_templatetags.py | 24 +++++++-------- .../gis/db/backends/oracle/operations.py | 4 +-- .../gis/db/backends/postgis/operations.py | 4 +-- .../gis/db/backends/spatialite/operations.py | 4 +-- django/contrib/gis/forms/fields.py | 2 +- .../gis/management/commands/ogrinspect.py | 2 +- django/contrib/gis/measure.py | 6 ++-- django/contrib/gis/tests/geo3d/tests.py | 2 +- django/contrib/gis/tests/geoadmin/tests.py | 4 +-- django/contrib/gis/utils/layermapping.py | 2 +- django/contrib/messages/tests/base.py | 2 +- django/core/management/commands/loaddata.py | 2 +- django/core/management/templates.py | 2 +- django/db/utils.py | 2 +- django/forms/formsets.py | 2 +- django/forms/models.py | 2 +- django/http/request.py | 4 +-- django/template/base.py | 2 +- django/test/html.py | 2 +- django/test/runner.py | 2 +- django/utils/crypto.py | 2 +- django/utils/jslex.py | 4 +-- extras/csrf_migration_helper.py | 4 +-- setup.cfg | 2 +- .../commands/custom_startproject.py | 2 +- tests/admin_views/models.py | 2 +- tests/admin_views/tests.py | 6 ++-- tests/aggregation_regress/tests.py | 2 +- tests/basic/tests.py | 2 +- tests/cache/tests.py | 4 +-- tests/file_uploads/tests.py | 4 +-- tests/fixtures_regress/tests.py | 4 +-- tests/forms_tests/tests/test_fields.py | 6 ++-- tests/forms_tests/tests/test_formsets.py | 8 ++--- tests/forms_tests/tests/tests.py | 2 +- tests/generic_relations/tests.py | 8 ++--- tests/i18n/tests.py | 2 +- tests/logging_tests/tests.py | 12 ++++---- tests/mail/tests.py | 2 +- tests/managers_regress/tests.py | 6 ++-- tests/middleware_exceptions/tests.py | 8 ++--- tests/model_fields/models.py | 4 +-- tests/model_forms/tests.py | 18 +++++------ tests/model_formsets_regress/tests.py | 2 +- tests/model_regress/tests.py | 4 +-- tests/pagination/tests.py | 6 ++-- tests/prefetch_related/tests.py | 4 +-- tests/requests/tests.py | 2 +- tests/runtests.py | 2 +- tests/select_for_update/tests.py | 2 +- tests/serializers_regress/tests.py | 2 +- tests/signing/tests.py | 2 +- tests/template_tests/templatetags/custom.py | 6 ++-- tests/template_tests/test_loaders.py | 2 +- tests/template_tests/test_parser.py | 4 +-- tests/template_tests/test_response.py | 8 ++--- tests/template_tests/tests.py | 2 +- tests/test_runner/tests.py | 2 +- tests/utils_tests/test_html.py | 2 +- tests/utils_tests/test_jslex.py | 2 +- tests/validation/test_unique.py | 4 +-- tests/view_tests/tests/test_static.py | 2 +- tests/view_tests/views.py | 2 +- tests/wsgi/tests.py | 2 +- tests/wsgi/urls.py | 2 +- 71 files changed, 152 insertions(+), 152 deletions(-) diff --git a/django/contrib/admin/filters.py b/django/contrib/admin/filters.py index 5f9d69dee4..243bad8247 100644 --- a/django/contrib/admin/filters.py +++ b/django/contrib/admin/filters.py @@ -242,7 +242,7 @@ class BooleanFieldListFilter(FieldListFilter): 'selected': self.lookup_val == lookup and not self.lookup_val2, 'query_string': cl.get_query_string({ self.lookup_kwarg: lookup, - }, [self.lookup_kwarg2]), + }, [self.lookup_kwarg2]), 'display': title, } if isinstance(self.field, models.NullBooleanField): @@ -250,7 +250,7 @@ class BooleanFieldListFilter(FieldListFilter): 'selected': self.lookup_val2 == 'True', 'query_string': cl.get_query_string({ self.lookup_kwarg2: 'True', - }, [self.lookup_kwarg]), + }, [self.lookup_kwarg]), 'display': _('Unknown'), } diff --git a/django/contrib/admin/options.py b/django/contrib/admin/options.py index 6d3195a868..8ee4ed3fbc 100644 --- a/django/contrib/admin/options.py +++ b/django/contrib/admin/options.py @@ -1200,7 +1200,7 @@ class ModelAdmin(BaseModelAdmin): 'The %(name)s "%(obj)s" was deleted successfully.') % { 'name': force_text(opts.verbose_name), 'obj': force_text(obj_display) - }, messages.SUCCESS) + }, messages.SUCCESS) if self.has_change_permission(request, None): post_url = reverse('admin:%s_%s_changelist' % diff --git a/django/contrib/auth/management/commands/changepassword.py b/django/contrib/auth/management/commands/changepassword.py index 3240b0f992..deb89ef1d4 100644 --- a/django/contrib/auth/management/commands/changepassword.py +++ b/django/contrib/auth/management/commands/changepassword.py @@ -35,7 +35,7 @@ class Command(BaseCommand): try: u = UserModel._default_manager.using(options.get('database')).get(**{ UserModel.USERNAME_FIELD: username - }) + }) except UserModel.DoesNotExist: raise CommandError("user '%s' does not exist" % username) diff --git a/django/contrib/auth/tests/test_forms.py b/django/contrib/auth/tests/test_forms.py index 718e8fff18..430bac1b05 100644 --- a/django/contrib/auth/tests/test_forms.py +++ b/django/contrib/auth/tests/test_forms.py @@ -32,7 +32,7 @@ class UserCreationFormTest(TestCase): 'username': 'testclient', 'password1': 'test123', 'password2': 'test123', - } + } form = UserCreationForm(data) self.assertFalse(form.is_valid()) self.assertEqual(form["username"].errors, @@ -43,7 +43,7 @@ class UserCreationFormTest(TestCase): 'username': 'jsmith!', 'password1': 'test123', 'password2': 'test123', - } + } form = UserCreationForm(data) self.assertFalse(form.is_valid()) self.assertEqual(form["username"].errors, @@ -55,7 +55,7 @@ class UserCreationFormTest(TestCase): 'username': 'jsmith', 'password1': 'test123', 'password2': 'test', - } + } form = UserCreationForm(data) self.assertFalse(form.is_valid()) self.assertEqual(form["password2"].errors, @@ -82,7 +82,7 @@ class UserCreationFormTest(TestCase): 'username': 'jsmith@example.com', 'password1': 'test123', 'password2': 'test123', - } + } form = UserCreationForm(data) self.assertTrue(form.is_valid()) u = form.save() @@ -101,7 +101,7 @@ class AuthenticationFormTest(TestCase): data = { 'username': 'jsmith_does_not_exist', 'password': 'test123', - } + } form = AuthenticationForm(None, data) self.assertFalse(form.is_valid()) self.assertEqual(form.non_field_errors(), @@ -114,7 +114,7 @@ class AuthenticationFormTest(TestCase): data = { 'username': 'inactive', 'password': 'password', - } + } form = AuthenticationForm(None, data) self.assertFalse(form.is_valid()) self.assertEqual(form.non_field_errors(), @@ -126,7 +126,7 @@ class AuthenticationFormTest(TestCase): data = { 'username': 'inactive', 'password': 'password', - } + } form = AuthenticationForm(None, data) self.assertFalse(form.is_valid()) self.assertEqual(form.non_field_errors(), @@ -137,7 +137,7 @@ class AuthenticationFormTest(TestCase): data = { 'username': 'inactive', 'password': 'password', - } + } class AuthenticationFormWithInactiveUsersOkay(AuthenticationForm): def confirm_login_allowed(self, user): @@ -161,7 +161,7 @@ class AuthenticationFormTest(TestCase): data = { 'username': 'testclient', 'password': 'password', - } + } form = PickyAuthenticationForm(None, data) self.assertFalse(form.is_valid()) self.assertEqual(form.non_field_errors(), ["Sorry, nobody's allowed in."]) @@ -171,7 +171,7 @@ class AuthenticationFormTest(TestCase): data = { 'username': 'testclient', 'password': 'password', - } + } form = AuthenticationForm(None, data) self.assertTrue(form.is_valid()) self.assertEqual(form.non_field_errors(), []) @@ -215,7 +215,7 @@ class SetPasswordFormTest(TestCase): data = { 'new_password1': 'abc123', 'new_password2': 'abc', - } + } form = SetPasswordForm(user, data) self.assertFalse(form.is_valid()) self.assertEqual(form["new_password2"].errors, @@ -226,7 +226,7 @@ class SetPasswordFormTest(TestCase): data = { 'new_password1': 'abc123', 'new_password2': 'abc123', - } + } form = SetPasswordForm(user, data) self.assertTrue(form.is_valid()) @@ -243,7 +243,7 @@ class PasswordChangeFormTest(TestCase): 'old_password': 'test', 'new_password1': 'abc123', 'new_password2': 'abc123', - } + } form = PasswordChangeForm(user, data) self.assertFalse(form.is_valid()) self.assertEqual(form["old_password"].errors, @@ -256,7 +256,7 @@ class PasswordChangeFormTest(TestCase): 'old_password': 'password', 'new_password1': 'abc123', 'new_password2': 'abc', - } + } form = PasswordChangeForm(user, data) self.assertFalse(form.is_valid()) self.assertEqual(form["new_password2"].errors, @@ -269,7 +269,7 @@ class PasswordChangeFormTest(TestCase): 'old_password': 'password', 'new_password1': 'abc123', 'new_password2': 'abc123', - } + } form = PasswordChangeForm(user, data) self.assertTrue(form.is_valid()) diff --git a/django/contrib/auth/tests/test_views.py b/django/contrib/auth/tests/test_views.py index dc2e985248..0190d1d3d4 100644 --- a/django/contrib/auth/tests/test_views.py +++ b/django/contrib/auth/tests/test_views.py @@ -49,7 +49,7 @@ class AuthViewsTestCase(TestCase): response = self.client.post('/login/', { 'username': 'testclient', 'password': password, - }) + }) self.assertTrue(SESSION_KEY in self.client.session) return response @@ -180,7 +180,7 @@ class PasswordResetTest(AuthViewsTestCase): response = self.client.post('/password_reset/', {'email': 'staffmember@example.com'}, HTTP_HOST='www.example:dr.frankenstein@evil.tld' - ) + ) self.assertEqual(response.status_code, 400) self.assertEqual(len(mail.outbox), 0) self.assertEqual(len(logger_calls), 1) @@ -193,7 +193,7 @@ class PasswordResetTest(AuthViewsTestCase): response = self.client.post('/admin_password_reset/', {'email': 'staffmember@example.com'}, HTTP_HOST='www.example:dr.frankenstein@evil.tld' - ) + ) self.assertEqual(response.status_code, 400) self.assertEqual(len(mail.outbox), 0) self.assertEqual(len(logger_calls), 1) @@ -357,7 +357,7 @@ class ChangePasswordTest(AuthViewsTestCase): }) self.assertFormError(response, AuthenticationForm.error_messages['invalid_login'] % { 'username': User._meta.get_field('username').verbose_name - }) + }) def logout(self): self.client.get('/logout/') diff --git a/django/contrib/contenttypes/generic.py b/django/contrib/contenttypes/generic.py index 241f497590..bffd969f48 100644 --- a/django/contrib/contenttypes/generic.py +++ b/django/contrib/contenttypes/generic.py @@ -354,7 +354,7 @@ def create_generic_related_manager(superclass): '%s__pk' % self.content_type_field_name: self.content_type.id, '%s__in' % self.object_id_field_name: set(obj._get_pk_val() for obj in instances) - } + } qs = super(GenericRelatedObjectManager, self).get_queryset().using(db).filter(**query) # We (possibly) need to convert object IDs to the type of the # instances' PK in order to match up instances: diff --git a/django/contrib/flatpages/tests/test_templatetags.py b/django/contrib/flatpages/tests/test_templatetags.py index 473abce1b1..b789422a86 100644 --- a/django/contrib/flatpages/tests/test_templatetags.py +++ b/django/contrib/flatpages/tests/test_templatetags.py @@ -32,7 +32,7 @@ class FlatpageTemplateTagTests(TestCase): "{% for page in flatpages %}" "{{ page.title }}," "{% endfor %}" - ).render(Context()) + ).render(Context()) self.assertEqual(out, "A Flatpage,A Nested Flatpage,") def test_get_flatpages_tag_for_anon_user(self): @@ -43,9 +43,9 @@ class FlatpageTemplateTagTests(TestCase): "{% for page in flatpages %}" "{{ page.title }}," "{% endfor %}" - ).render(Context({ + ).render(Context({ 'anonuser': AnonymousUser() - })) + })) self.assertEqual(out, "A Flatpage,A Nested Flatpage,") @skipIfCustomUser @@ -58,9 +58,9 @@ class FlatpageTemplateTagTests(TestCase): "{% for page in flatpages %}" "{{ page.title }}," "{% endfor %}" - ).render(Context({ + ).render(Context({ 'me': me - })) + })) self.assertEqual(out, "A Flatpage,A Nested Flatpage,Sekrit Nested Flatpage,Sekrit Flatpage,") def test_get_flatpages_with_prefix(self): @@ -71,7 +71,7 @@ class FlatpageTemplateTagTests(TestCase): "{% for page in location_flatpages %}" "{{ page.title }}," "{% endfor %}" - ).render(Context()) + ).render(Context()) self.assertEqual(out, "A Nested Flatpage,") def test_get_flatpages_with_prefix_for_anon_user(self): @@ -82,9 +82,9 @@ class FlatpageTemplateTagTests(TestCase): "{% for page in location_flatpages %}" "{{ page.title }}," "{% endfor %}" - ).render(Context({ + ).render(Context({ 'anonuser': AnonymousUser() - })) + })) self.assertEqual(out, "A Nested Flatpage,") @skipIfCustomUser @@ -97,9 +97,9 @@ class FlatpageTemplateTagTests(TestCase): "{% for page in location_flatpages %}" "{{ page.title }}," "{% endfor %}" - ).render(Context({ + ).render(Context({ 'me': me - })) + })) self.assertEqual(out, "A Nested Flatpage,Sekrit Nested Flatpage,") def test_get_flatpages_with_variable_prefix(self): @@ -110,9 +110,9 @@ class FlatpageTemplateTagTests(TestCase): "{% for page in location_flatpages %}" "{{ page.title }}," "{% endfor %}" - ).render(Context({ + ).render(Context({ 'location_prefix': '/location/' - })) + })) self.assertEqual(out, "A Nested Flatpage,") def test_parsing_errors(self): diff --git a/django/contrib/gis/db/backends/oracle/operations.py b/django/contrib/gis/db/backends/oracle/operations.py index a8f798d300..9eed8632e8 100644 --- a/django/contrib/gis/db/backends/oracle/operations.py +++ b/django/contrib/gis/db/backends/oracle/operations.py @@ -114,7 +114,7 @@ class OracleOperations(DatabaseOperations, BaseSpatialOperations): 'distance_lt' : (SDODistance('<'), dtypes), 'distance_lte' : (SDODistance('<='), dtypes), 'dwithin' : (SDODWithin(), dtypes), - } + } geometry_functions = { 'contains' : SDOOperation('SDO_CONTAINS'), @@ -129,7 +129,7 @@ class OracleOperations(DatabaseOperations, BaseSpatialOperations): 'relate' : (SDORelate, six.string_types), # Oracle uses a different syntax, e.g., 'mask=inside+touch' 'touches' : SDOOperation('SDO_TOUCH'), 'within' : SDOOperation('SDO_INSIDE'), - } + } geometry_functions.update(distance_functions) gis_terms = set(['isnull']) diff --git a/django/contrib/gis/db/backends/postgis/operations.py b/django/contrib/gis/db/backends/postgis/operations.py index 41644e377d..1d29b394e0 100644 --- a/django/contrib/gis/db/backends/postgis/operations.py +++ b/django/contrib/gis/db/backends/postgis/operations.py @@ -119,7 +119,7 @@ class PostGISOperations(DatabaseOperations, BaseSpatialOperations): # The "&&" operator returns true if A's bounding box overlaps # B's bounding box. 'bboverlaps' : PostGISOperator('&&'), - } + } self.geometry_functions = { 'equals' : PostGISFunction(prefix, 'Equals'), @@ -256,7 +256,7 @@ class PostGISOperations(DatabaseOperations, BaseSpatialOperations): 'GeoDjango requires at least PostGIS version 1.3. ' 'Was the database created from a spatial database ' 'template?' % self.connection.settings_dict['NAME'] - ) + ) version = vtup[1:] return version diff --git a/django/contrib/gis/db/backends/spatialite/operations.py b/django/contrib/gis/db/backends/spatialite/operations.py index d2bbc9f4b9..1ccd8fa610 100644 --- a/django/contrib/gis/db/backends/spatialite/operations.py +++ b/django/contrib/gis/db/backends/spatialite/operations.py @@ -103,14 +103,14 @@ class SpatiaLiteOperations(DatabaseOperations, BaseSpatialOperations): # These are implemented here as synonyms for Equals 'same_as' : SpatiaLiteFunction('Equals'), 'exact' : SpatiaLiteFunction('Equals'), - } + } distance_functions = { 'distance_gt' : (get_dist_ops('>'), dtypes), 'distance_gte' : (get_dist_ops('>='), dtypes), 'distance_lt' : (get_dist_ops('<'), dtypes), 'distance_lte' : (get_dist_ops('<='), dtypes), - } + } geometry_functions.update(distance_functions) def __init__(self, connection): diff --git a/django/contrib/gis/forms/fields.py b/django/contrib/gis/forms/fields.py index 5597a07e45..2e75689010 100644 --- a/django/contrib/gis/forms/fields.py +++ b/django/contrib/gis/forms/fields.py @@ -24,7 +24,7 @@ class GeometryField(forms.Field): 'invalid_geom_type' : _('Invalid geometry type.'), 'transform_error' : _('An error occurred when transforming the geometry ' 'to the SRID of the geometry form field.'), - } + } def __init__(self, **kwargs): # Pop out attributes from the database field, or use sensible diff --git a/django/contrib/gis/management/commands/ogrinspect.py b/django/contrib/gis/management/commands/ogrinspect.py index 238209123e..af2d585f28 100644 --- a/django/contrib/gis/management/commands/ogrinspect.py +++ b/django/contrib/gis/management/commands/ogrinspect.py @@ -67,7 +67,7 @@ class Command(LabelCommand): 'determined, the SRID of the data source is used.'), make_option('--mapping', action='store_true', dest='mapping', help='Generate mapping dictionary for use with `LayerMapping`.') - ) + ) requires_model_validation = False diff --git a/django/contrib/gis/measure.py b/django/contrib/gis/measure.py index c9bc86a26b..3335f8f935 100644 --- a/django/contrib/gis/measure.py +++ b/django/contrib/gis/measure.py @@ -252,7 +252,7 @@ class Distance(MeasureBase): 'survey_ft' : 0.304800609601, 'um' : 0.000001, 'yd': 0.9144, - } + } # Unit aliases for `UNIT` terms encountered in Spatial Reference WKT. ALIAS = { @@ -292,7 +292,7 @@ class Distance(MeasureBase): 'U.S. Foot' : 'survey_ft', 'Yard (Indian)' : 'indian_yd', 'Yard (Sears)' : 'sears_yd' - } + } LALIAS = dict((k.lower(), v) for k, v in ALIAS.items()) def __mul__(self, other): @@ -305,7 +305,7 @@ class Distance(MeasureBase): else: raise TypeError('%(distance)s must be multiplied with number or %(distance)s' % { "distance" : pretty_name(self.__class__), - }) + }) class Area(MeasureBase): diff --git a/django/contrib/gis/tests/geo3d/tests.py b/django/contrib/gis/tests/geo3d/tests.py index 3dc8451bac..b528e1faea 100644 --- a/django/contrib/gis/tests/geo3d/tests.py +++ b/django/contrib/gis/tests/geo3d/tests.py @@ -51,7 +51,7 @@ interstate_data = ( 15.544, 14.975, 15.688, 16.099, 15.197, 17.268, 19.857, 15.435), ), - ) +) # Bounding box polygon for inner-loop of Houston (in projected coordinate # system 32140), with elevation values from the National Elevation Dataset diff --git a/django/contrib/gis/tests/geoadmin/tests.py b/django/contrib/gis/tests/geoadmin/tests.py index ebeb22338c..b39b3183dc 100644 --- a/django/contrib/gis/tests/geoadmin/tests.py +++ b/django/contrib/gis/tests/geoadmin/tests.py @@ -28,7 +28,7 @@ class GeoAdminTest(TestCase): def test_olmap_OSM_rendering(self): geoadmin = admin.site._registry[City] result = geoadmin.get_map_widget(City._meta.get_field('point'))( - ).render('point', Point(-79.460734, 40.18476)) + ).render('point', Point(-79.460734, 40.18476)) self.assertIn( """geodjango_point.layers.base = new OpenLayers.Layer.OSM("OpenStreetMap (Mapnik)");""", result) @@ -36,7 +36,7 @@ class GeoAdminTest(TestCase): def test_olmap_WMS_rendering(self): geoadmin = admin.GeoModelAdmin(City, admin.site) result = geoadmin.get_map_widget(City._meta.get_field('point'))( - ).render('point', Point(-79.460734, 40.18476)) + ).render('point', Point(-79.460734, 40.18476)) self.assertIn( """geodjango_point.layers.base = new OpenLayers.Layer.WMS("OpenLayers WMS", "http://vmap0.tiles.osgeo.org/wms/vmap0", {layers: \'basic\', format: 'image/jpeg'});""", result) diff --git a/django/contrib/gis/utils/layermapping.py b/django/contrib/gis/utils/layermapping.py index 4c11f9dbfa..2ce525aa8c 100644 --- a/django/contrib/gis/utils/layermapping.py +++ b/django/contrib/gis/utils/layermapping.py @@ -66,7 +66,7 @@ class LayerMapping(object): models.BigIntegerField : (OFTInteger, OFTReal, OFTString), models.SmallIntegerField : (OFTInteger, OFTReal, OFTString), models.PositiveSmallIntegerField : (OFTInteger, OFTReal, OFTString), - } + } def __init__(self, model, data, mapping, layer=0, source_srs=None, encoding='utf-8', diff --git a/django/contrib/messages/tests/base.py b/django/contrib/messages/tests/base.py index 5ed12a7e46..f5d7a5bf00 100644 --- a/django/contrib/messages/tests/base.py +++ b/django/contrib/messages/tests/base.py @@ -359,7 +359,7 @@ class BaseTests(object): constants.WARNING: '', constants.ERROR: 'bad', 29: 'custom', - } + } ) def test_custom_tags(self): storage = self.get_storage() diff --git a/django/core/management/commands/loaddata.py b/django/core/management/commands/loaddata.py index 20ab486489..d28c715930 100644 --- a/django/core/management/commands/loaddata.py +++ b/django/core/management/commands/loaddata.py @@ -144,7 +144,7 @@ class Command(BaseCommand): 'object_name': obj.object._meta.object_name, 'pk': obj.object.pk, 'error_msg': force_text(e) - },) + },) raise self.loaded_object_count += loaded_objects_in_fixture diff --git a/django/core/management/templates.py b/django/core/management/templates.py index 164fd071e5..ea4bd1164b 100644 --- a/django/core/management/templates.py +++ b/django/core/management/templates.py @@ -51,7 +51,7 @@ class TemplateCommand(BaseCommand): help='The file name(s) to render. ' 'Separate multiple extensions with commas, or use ' '-n multiple times.') - ) + ) requires_model_validation = False # Can't import settings during this command, because they haven't # necessarily been created. diff --git a/django/db/utils.py b/django/db/utils.py index 3b3799bbd7..5d81fee44b 100644 --- a/django/db/utils.py +++ b/django/db/utils.py @@ -82,7 +82,7 @@ class DatabaseErrorWrapper(object): DatabaseError, InterfaceError, Error, - ): + ): db_exc_type = getattr(self.wrapper.Database, dj_exc_type.__name__) if issubclass(exc_type, db_exc_type): dj_exc_value = dj_exc_type(*exc_value.args) diff --git a/django/forms/formsets.py b/django/forms/formsets.py index ae424f901a..d1fb136adb 100644 --- a/django/forms/formsets.py +++ b/django/forms/formsets.py @@ -147,7 +147,7 @@ class BaseFormSet(object): 'auto_id': self.auto_id, 'prefix': self.add_prefix(i), 'error_class': self.error_class, - } + } if self.is_bound: defaults['data'] = self.data defaults['files'] = self.files diff --git a/django/forms/models.py b/django/forms/models.py index 3b01e9b6c7..820a30b667 100644 --- a/django/forms/models.py +++ b/django/forms/models.py @@ -688,7 +688,7 @@ class BaseModelFormSet(BaseFormSet): return ugettext("Please correct the duplicate data for %(field)s, " "which must be unique.") % { "field": get_text_list(unique_check, six.text_type(_("and"))), - } + } def get_date_error_message(self, date_check): return ugettext("Please correct the duplicate data for %(field_name)s " diff --git a/django/http/request.py b/django/http/request.py index 1cecbe191a..3f480592af 100644 --- a/django/http/request.py +++ b/django/http/request.py @@ -526,9 +526,9 @@ def validate_host(host, allowed_hosts): pattern == '*' or pattern.startswith('.') and ( host.endswith(pattern) or host == pattern[1:] - ) or + ) or pattern == host - ) + ) if match: return True diff --git a/django/template/base.py b/django/template/base.py index b1df21f519..5cc5dd684f 100644 --- a/django/template/base.py +++ b/django/template/base.py @@ -495,7 +495,7 @@ constant_string = r""" 'strsq': r"'[^'\\]*(?:\\.[^'\\]*)*'", # single-quoted string 'i18n_open': re.escape("_("), 'i18n_close': re.escape(")"), - } +} constant_string = constant_string.replace("\n", "") filter_raw_string = r""" diff --git a/django/test/html.py b/django/test/html.py index 0d30bd2d1c..35e9be9570 100644 --- a/django/test/html.py +++ b/django/test/html.py @@ -190,7 +190,7 @@ class Parser(HTMLParser): if name == "class" else (name, value) for name, value in attrs - ] + ] element = Element(tag, attrs) self.current.append(element) if tag not in self.SELF_CLOSING_TAGS: diff --git a/django/test/runner.py b/django/test/runner.py index fd0bfe8cb0..e76d7298fc 100644 --- a/django/test/runner.py +++ b/django/test/runner.py @@ -25,7 +25,7 @@ class DiscoverRunner(object): make_option('-p', '--pattern', action='store', dest='pattern', default="test*.py", help='The test matching pattern. Defaults to test*.py.'), - ) + ) def __init__(self, pattern=None, top_level=None, verbosity=1, interactive=True, failfast=False, diff --git a/django/utils/crypto.py b/django/utils/crypto.py index b395b3699f..cb5e06efd2 100644 --- a/django/utils/crypto.py +++ b/django/utils/crypto.py @@ -72,7 +72,7 @@ def get_random_string(length=12, random.getstate(), time.time(), settings.SECRET_KEY)).encode('utf-8') - ).digest()) + ).digest()) return ''.join(random.choice(allowed_chars) for i in range(length)) diff --git a/django/utils/jslex.py b/django/utils/jslex.py index f042d2e5ee..bf9fffb7e7 100644 --- a/django/utils/jslex.py +++ b/django/utils/jslex.py @@ -136,7 +136,7 @@ class JsLexer(Lexer): Tok("punct", literals("{ } ( [ . ; , < > + - * % & | ^ ! ~ ? : ="), next='reg'), Tok("string", r'"([^"\\]|(\\(.|\n)))*?"', next='div'), Tok("string", r"'([^'\\]|(\\(.|\n)))*?'", next='div'), - ] + ] both_after = [ Tok("other", r"."), @@ -175,7 +175,7 @@ class JsLexer(Lexer): [a-zA-Z0-9]* # trailing flags """, next='div'), ] + both_after, - } + } def __init__(self): super(JsLexer, self).__init__(self.states, 'reg') diff --git a/extras/csrf_migration_helper.py b/extras/csrf_migration_helper.py index 1554555eda..ffa8b0b924 100755 --- a/extras/csrf_migration_helper.py +++ b/extras/csrf_migration_helper.py @@ -77,11 +77,11 @@ TEMPLATE_EXTENSIONS = [ ".html", ".htm", - ] +] PYTHON_SOURCE_EXTENSIONS = [ ".py", - ] +] TEMPLATE_ENCODING = "UTF-8" diff --git a/setup.cfg b/setup.cfg index e9679c50d5..c7f2e5b4f3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ install-script = scripts/rpm-install.sh [flake8] exclude=./django/utils/dictconfig.py,./django/contrib/comments/*,./django/utils/unittest.py,./tests/comment_tests/*,./django/test/_doctest.py -ignore=E123,E124,E125,E126,E127,E128,E225,E226,E241,E251,E302,E501,E203,E221,E227,E231,E261,E301,F401,F403,F841,W601 +ignore=E124,E125,E126,E127,E128,E225,E226,E241,E251,E302,E501,E203,E221,E227,E231,E261,E301,F401,F403,F841,W601 [metadata] license-file = LICENSE diff --git a/tests/admin_scripts/management/commands/custom_startproject.py b/tests/admin_scripts/management/commands/custom_startproject.py index 80c6d6b805..8144b5b69c 100644 --- a/tests/admin_scripts/management/commands/custom_startproject.py +++ b/tests/admin_scripts/management/commands/custom_startproject.py @@ -8,4 +8,4 @@ class Command(BaseCommand): make_option('--extra', action='store', dest='extra', help='An arbitrary extra value passed to the context'), - ) + ) diff --git a/tests/admin_views/models.py b/tests/admin_views/models.py index adccae6c26..0f16fdb81e 100644 --- a/tests/admin_views/models.py +++ b/tests/admin_views/models.py @@ -171,7 +171,7 @@ class Fabric(models.Model): ('Textured', ( ('x', 'Horizontal'), ('y', 'Vertical'), - ) + ) ), ('plain', 'Smooth'), ) diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py index 25a4b02495..438522189a 100644 --- a/tests/admin_views/tests.py +++ b/tests/admin_views/tests.py @@ -431,7 +431,7 @@ class AdminViewBasicTest(AdminViewBasicTestCase): values=[p.name for p in Promo.objects.all()], test=lambda obj, value: obj.chap.book.promo_set.filter(name=value).exists()), - } + } for filter_path, params in filters.items(): for value in params['values']: query_string = urlencode({filter_path: value}) @@ -1256,7 +1256,7 @@ class AdminViewPermissionsTest(TestCase): 'index': 0, 'action': ['delete_selected'], '_selected_action': ['1'], - }) + }) self.assertTemplateUsed(response, 'custom_admin/delete_selected_confirmation.html') response = self.client.get('/test_admin/admin/admin_views/customarticle/%d/history/' % article_pk) self.assertTemplateUsed(response, 'custom_admin/object_history.html') @@ -1474,7 +1474,7 @@ class AdminViewDeletedObjectsTest(TestCase): """
  • Super villain: Bob""", """
  • Secret hideout: floating castle""", """
  • Super secret hideout: super floating castle!""" - ] + ] response = self.client.get('/test_admin/admin/admin_views/villain/%s/delete/' % quote(3)) for should in should_contain: self.assertContains(response, should, 1) diff --git a/tests/aggregation_regress/tests.py b/tests/aggregation_regress/tests.py index 111ef79b5e..078c1a9d1b 100644 --- a/tests/aggregation_regress/tests.py +++ b/tests/aggregation_regress/tests.py @@ -256,7 +256,7 @@ class AggregationTests(TestCase): self.assertEqual( Book.objects.annotate(c=Count('authors')).values('c').aggregate(Max('c')), {'c__max': 3} - ) + ) def test_field_error(self): # Bad field requests in aggregates are caught and reported diff --git a/tests/basic/tests.py b/tests/basic/tests.py index 5c1ed0726a..5d5e93b1e4 100644 --- a/tests/basic/tests.py +++ b/tests/basic/tests.py @@ -607,7 +607,7 @@ class ModelTest(TestCase): dicts = Article.objects.filter( pub_date__year=2008).extra( select={'dashed-value': '1'} - ).values('headline', 'dashed-value') + ).values('headline', 'dashed-value') self.assertEqual([sorted(d.items()) for d in dicts], [[('dashed-value', 1), ('headline', 'Article 11')], [('dashed-value', 1), ('headline', 'Article 12')]]) diff --git a/tests/cache/tests.py b/tests/cache/tests.py index b107cdb3fe..89c53da6b8 100644 --- a/tests/cache/tests.py +++ b/tests/cache/tests.py @@ -150,7 +150,7 @@ class DummyCacheTests(unittest.TestCase): 'unicode_ascii': 'Iñtërnâtiônàlizætiøn1', 'Iñtërnâtiônàlizætiøn': 'Iñtërnâtiônàlizætiøn2', 'ascii2': {'x' : 1} - } + } for (key, value) in stuff.items(): self.cache.set(key, value) self.assertEqual(self.cache.get(key), None) @@ -354,7 +354,7 @@ class BaseCacheTests(object): 'unicode_ascii': 'Iñtërnâtiônàlizætiøn1', 'Iñtërnâtiônàlizætiøn': 'Iñtërnâtiônàlizætiøn2', 'ascii2': {'x' : 1} - } + } # Test `set` for (key, value) in stuff.items(): self.cache.set(key, value) diff --git a/tests/file_uploads/tests.py b/tests/file_uploads/tests.py index 83a9e8b09c..703d512ef6 100644 --- a/tests/file_uploads/tests.py +++ b/tests/file_uploads/tests.py @@ -61,7 +61,7 @@ class FileUploadTests(TestCase): 'name': 'Ringo', 'file_field1': file1, 'file_field2': file2, - } + } for key in list(post_data): try: @@ -112,7 +112,7 @@ class FileUploadTests(TestCase): post_data = { 'file_unicode': file1, - } + } response = self.client.post('/file_uploads/unicode_name/', post_data) diff --git a/tests/fixtures_regress/tests.py b/tests/fixtures_regress/tests.py index eb57a698be..4bfb45ea39 100644 --- a/tests/fixtures_regress/tests.py +++ b/tests/fixtures_regress/tests.py @@ -390,7 +390,7 @@ class TestFixtures(TestCase): stdout.getvalue(), """[{"pk": %d, "model": "fixtures_regress.widget", "fields": {"name": "grommet"}}]""" % widget.pk - ) + ) def test_loaddata_works_when_fixture_has_forward_refs(self): """ @@ -535,7 +535,7 @@ class NaturalKeyFixtureTests(TestCase): 'loaddata', 'forward_ref_lookup.json', verbosity=0, - ) + ) stdout = StringIO() management.call_command( diff --git a/tests/forms_tests/tests/test_fields.py b/tests/forms_tests/tests/test_fields.py index 152e53773e..e04b060916 100644 --- a/tests/forms_tests/tests/test_fields.py +++ b/tests/forms_tests/tests/test_fields.py @@ -1142,7 +1142,7 @@ class FieldsTests(SimpleTestCase): ('/django/forms/util.py', 'util.py'), ('/django/forms/utils.py', 'utils.py'), ('/django/forms/widgets.py', 'widgets.py') - ] + ] for exp, got in zip(expected, fix_os_paths(f.choices)): self.assertEqual(exp[1], got[1]) self.assertTrue(got[0].endswith(exp[0])) @@ -1163,7 +1163,7 @@ class FieldsTests(SimpleTestCase): ('/django/forms/util.py', 'util.py'), ('/django/forms/utils.py', 'utils.py'), ('/django/forms/widgets.py', 'widgets.py') - ] + ] for exp, got in zip(expected, fix_os_paths(f.choices)): self.assertEqual(exp[1], got[1]) self.assertTrue(got[0].endswith(exp[0])) @@ -1184,7 +1184,7 @@ class FieldsTests(SimpleTestCase): ('/django/forms/util.py', 'util.py'), ('/django/forms/utils.py', 'utils.py'), ('/django/forms/widgets.py', 'widgets.py') - ] + ] for exp, got in zip(expected, fix_os_paths(f.choices)): self.assertEqual(exp[1], got[1]) self.assertTrue(got[0].endswith(exp[0])) diff --git a/tests/forms_tests/tests/test_formsets.py b/tests/forms_tests/tests/test_formsets.py index 28ebfd08cc..4b4a4bc001 100644 --- a/tests/forms_tests/tests/test_formsets.py +++ b/tests/forms_tests/tests/test_formsets.py @@ -996,9 +996,9 @@ class FormsFormsetTestCase(TestCase): 'choices-2-votes': '2', 'choices-3-choice': 'Three', 'choices-3-votes': '3', - }, + }, prefix='choices', - ) + ) # But we still only instantiate 3 forms self.assertEqual(len(formset.forms), 3) # and the formset isn't valid @@ -1028,9 +1028,9 @@ class FormsFormsetTestCase(TestCase): 'choices-2-votes': '2', 'choices-3-choice': 'Three', 'choices-3-votes': '3', - }, + }, prefix='choices', - ) + ) # Four forms are instantiated and no exception is raised self.assertEqual(len(formset.forms), 4) finally: diff --git a/tests/forms_tests/tests/tests.py b/tests/forms_tests/tests/tests.py index 618ab8e07c..159d03ab7e 100644 --- a/tests/forms_tests/tests/tests.py +++ b/tests/forms_tests/tests/tests.py @@ -128,7 +128,7 @@ class ModelFormCallableModelDefault(TestCase): 'choice_int': obj2, 'multi_choice': [obj2,obj3], 'multi_choice_int': ChoiceOptionModel.objects.exclude(name="default"), - }).as_p(), """

    diff --git a/tests/generic_relations/tests.py b/tests/generic_relations/tests.py index 9ad8acb709..64219e4897 100644 --- a/tests/generic_relations/tests.py +++ b/tests/generic_relations/tests.py @@ -105,7 +105,7 @@ class GenericRelationsTests(TestCase): ('salty', Vegetable, bacon.pk), ('shiny', Animal, platypus.pk), ('yellow', Animal, lion.pk) - ], + ], comp_func ) lion.delete() @@ -115,7 +115,7 @@ class GenericRelationsTests(TestCase): ('fatty', Vegetable, bacon.pk), ('salty', Vegetable, bacon.pk), ('shiny', Animal, platypus.pk) - ], + ], comp_func ) @@ -129,7 +129,7 @@ class GenericRelationsTests(TestCase): ('fatty', Vegetable, bacon.pk), ('salty', Vegetable, bacon.pk), ('shiny', Animal, platypus.pk) - ], + ], comp_func ) # If you delete a tag, the objects using the tag are unaffected @@ -142,7 +142,7 @@ class GenericRelationsTests(TestCase): ('fatty', Animal, platypus.pk), ('salty', Vegetable, bacon.pk), ('shiny', Animal, platypus.pk) - ], + ], comp_func ) TaggedItem.objects.filter(tag='fatty').delete() diff --git a/tests/i18n/tests.py b/tests/i18n/tests.py index 9d35b9e54c..8e73c860de 100644 --- a/tests/i18n/tests.py +++ b/tests/i18n/tests.py @@ -787,7 +787,7 @@ class FormattingTests(TransRealMixin, TestCase): 'date_added': datetime.datetime(2009, 12, 31, 6, 0, 0), 'cents_paid': decimal.Decimal('59.47'), 'products_delivered': 12000, - }) + }) context = Context({'form': form}) self.assertTrue(form.is_valid()) diff --git a/tests/logging_tests/tests.py b/tests/logging_tests/tests.py index ef9f979e7e..6007a4f376 100644 --- a/tests/logging_tests/tests.py +++ b/tests/logging_tests/tests.py @@ -161,7 +161,7 @@ class AdminEmailHandlerTest(TestCase): admin_email_handler = [ h for h in logger.handlers if h.__class__.__name__ == "AdminEmailHandler" - ][0] + ][0] return admin_email_handler def test_fail_silently(self): @@ -171,7 +171,7 @@ class AdminEmailHandlerTest(TestCase): @override_settings( ADMINS=(('whatever admin', 'admin@example.com'),), EMAIL_SUBJECT_PREFIX='-SuperAwesomeSubject-' - ) + ) def test_accepts_args(self): """ Ensure that user-supplied arguments and the EMAIL_SUBJECT_PREFIX @@ -202,7 +202,7 @@ class AdminEmailHandlerTest(TestCase): ADMINS=(('whatever admin', 'admin@example.com'),), EMAIL_SUBJECT_PREFIX='-SuperAwesomeSubject-', INTERNAL_IPS=('127.0.0.1',), - ) + ) def test_accepts_args_and_request(self): """ Ensure that the subject is also handled if being @@ -237,7 +237,7 @@ class AdminEmailHandlerTest(TestCase): ADMINS=(('admin', 'admin@example.com'),), EMAIL_SUBJECT_PREFIX='', DEBUG=False, - ) + ) def test_subject_accepts_newlines(self): """ Ensure that newlines in email reports' subjects are escaped to avoid @@ -260,7 +260,7 @@ class AdminEmailHandlerTest(TestCase): ADMINS=(('admin', 'admin@example.com'),), EMAIL_SUBJECT_PREFIX='', DEBUG=False, - ) + ) def test_truncate_subject(self): """ RFC 2822's hard limit is 998 characters per line. @@ -281,7 +281,7 @@ class AdminEmailHandlerTest(TestCase): @override_settings( ADMINS=(('admin', 'admin@example.com'),), DEBUG=False, - ) + ) def test_uses_custom_email_backend(self): """ Refs #19325 diff --git a/tests/mail/tests.py b/tests/mail/tests.py index ec99afb5a7..ddd851b61b 100644 --- a/tests/mail/tests.py +++ b/tests/mail/tests.py @@ -326,7 +326,7 @@ class MailTests(HeadersCheckMixin, SimpleTestCase): send_mass_mail([ ('Subject1', 'Content1', 'from1@example.com', ['to1@example.com']), ('Subject2', 'Content2', 'from2@example.com', ['to2@example.com']), - ], connection=connection) + ], connection=connection) self.assertEqual(mail.outbox, []) self.assertEqual(len(connection.test_outbox), 2) self.assertEqual(connection.test_outbox[0].subject, 'Subject1') diff --git a/tests/managers_regress/tests.py b/tests/managers_regress/tests.py index 333ffc3b95..e7004b49ed 100644 --- a/tests/managers_regress/tests.py +++ b/tests/managers_regress/tests.py @@ -59,12 +59,12 @@ class ManagersRegressionTests(TestCase): "", "", "" - ] + ] ) self.assertQuerysetEqual(Child4.manager1.all(), [ "", "" - ], + ], ordered=False ) self.assertQuerysetEqual(Child5._default_manager.all(), [""]) @@ -72,7 +72,7 @@ class ManagersRegressionTests(TestCase): self.assertQuerysetEqual(Child7._default_manager.order_by('name'), [ "", "" - ] + ] ) def test_abstract_manager(self): diff --git a/tests/middleware_exceptions/tests.py b/tests/middleware_exceptions/tests.py index 18f8cd1ba3..dd4aef159f 100644 --- a/tests/middleware_exceptions/tests.py +++ b/tests/middleware_exceptions/tests.py @@ -375,7 +375,7 @@ class MiddlewareTests(BaseMiddlewareExceptionTest): self._add_middleware(pre_middleware) self.assert_exceptions_handled('/middleware_exceptions/null_view/', [ "The view middleware_exceptions.views.null_view didn't return an HttpResponse object.", - ], + ], ValueError()) # Check that the right middleware methods have been invoked @@ -392,7 +392,7 @@ class MiddlewareTests(BaseMiddlewareExceptionTest): self._add_middleware(pre_middleware) self.assert_exceptions_handled('/middleware_exceptions/null_view/', [ "The view middleware_exceptions.views.null_view didn't return an HttpResponse object." - ], + ], ValueError()) # Check that the right middleware methods have been invoked @@ -687,7 +687,7 @@ class BadMiddlewareTests(BaseMiddlewareExceptionTest): self.assert_exceptions_handled('/middleware_exceptions/null_view/', [ "The view middleware_exceptions.views.null_view didn't return an HttpResponse object.", 'Test Response Exception' - ]) + ]) # Check that the right middleware methods have been invoked self.assert_middleware_usage(pre_middleware, True, True, False, False, False) @@ -703,7 +703,7 @@ class BadMiddlewareTests(BaseMiddlewareExceptionTest): self._add_middleware(pre_middleware) self.assert_exceptions_handled('/middleware_exceptions/null_view/', [ "The view middleware_exceptions.views.null_view didn't return an HttpResponse object." - ], + ], ValueError()) # Check that the right middleware methods have been invoked diff --git a/tests/model_fields/models.py b/tests/model_fields/models.py index 89ea77b7ae..62d23a587a 100644 --- a/tests/model_fields/models.py +++ b/tests/model_fields/models.py @@ -33,12 +33,12 @@ class Whiz(models.Model): ('Group 1', ( (1, 'First'), (2, 'Second'), - ) + ) ), ('Group 2', ( (3, 'Third'), (4, 'Fourth'), - ) + ) ), (0, 'Other'), ) diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py index 46f3b95272..9fd220153b 100644 --- a/tests/model_forms/tests.py +++ b/tests/model_forms/tests.py @@ -466,7 +466,7 @@ class ModelFormBaseTest(TestCase): """ """ - ) + ) def test_orderfields_form(self): class OrderFields(forms.ModelForm): @@ -480,7 +480,7 @@ class ModelFormBaseTest(TestCase): str(OrderFields()), """ """ - ) + ) def test_orderfields2_form(self): class OrderFields2(forms.ModelForm): @@ -831,13 +831,13 @@ class OldFormForXTests(TestCase): """ """ - ) + ) self.assertHTMLEqual( str(f.as_ul()), """

  • """ - ) + ) self.assertHTMLEqual( str(f["name"]), """""") @@ -849,7 +849,7 @@ class OldFormForXTests(TestCase): """
  • Name:
  • Slug:
  • The URL:
  • """ - ) + ) def test_with_data(self): self.assertEqual(Category.objects.count(), 0) @@ -989,7 +989,7 @@ class OldFormForXTests(TestCase): 'pub_date': '1984-02-06', 'writer': six.text_type(w_royko.pk), 'article': 'Hello.' - }, instance=art) + }, instance=art) self.assertEqual(f.errors, {}) self.assertEqual(f.is_valid(), True) test_art = f.save() @@ -1002,7 +1002,7 @@ class OldFormForXTests(TestCase): 'headline': 'New headline', 'slug': 'new-headline', 'pub_date': '1988-01-04' - }, auto_id=False, instance=art) + }, auto_id=False, instance=art) self.assertHTMLEqual(f.as_ul(), '''
  • Headline:
  • Slug:
  • Pub date:
  • ''') @@ -1073,7 +1073,7 @@ class OldFormForXTests(TestCase): 'writer': six.text_type(w_royko.pk), 'article': 'Hello.', 'categories': [six.text_type(c1.id), six.text_type(c2.id)] - }, instance=new_art) + }, instance=new_art) new_art = f.save() self.assertEqual(new_art.id == art_id_1, True) new_art = Article.objects.get(id=art_id_1) @@ -1619,7 +1619,7 @@ class OldFormForXTests(TestCase): f = OptionalImageFileForm( data={'description': 'And a final one'}, files={'image': SimpleUploadedFile('test4.png', image_data2)} - ) + ) self.assertEqual(f.is_valid(), True) instance = f.save() self.assertEqual(instance.image.name, 'tests/test4.png') diff --git a/tests/model_formsets_regress/tests.py b/tests/model_formsets_regress/tests.py index 6715b5b10e..a2b3dcdce4 100644 --- a/tests/model_formsets_regress/tests.py +++ b/tests/model_formsets_regress/tests.py @@ -203,7 +203,7 @@ class InlineFormsetTests(TestCase): self.assertQuerysetEqual( dalnet.host_set.order_by("hostname"), ["", ""] - ) + ) def test_initial_data(self): user = User.objects.create(username="bibi", serial=1) diff --git a/tests/model_regress/tests.py b/tests/model_regress/tests.py index fdb3b1f87c..8b58ed389e 100644 --- a/tests/model_regress/tests.py +++ b/tests/model_regress/tests.py @@ -123,13 +123,13 @@ class ModelTests(TestCase): self.assertQuerysetEqual( Party.objects.filter(when__year=1), [ datetime.date(1, 3, 3), - ], + ], attrgetter("when") ) self.assertQuerysetEqual( Party.objects.filter(when__year='1'), [ datetime.date(1, 3, 3), - ], + ], attrgetter("when") ) diff --git a/tests/pagination/tests.py b/tests/pagination/tests.py index 46ea428d17..d4ef272117 100644 --- a/tests/pagination/tests.py +++ b/tests/pagination/tests.py @@ -253,7 +253,7 @@ class ModelPaginationTests(TestCase): "", "", "" - ], + ], ordered=False ) self.assertTrue(p.has_next()) @@ -273,7 +273,7 @@ class ModelPaginationTests(TestCase): "", "", "" - ], + ], ordered=False ) self.assertFalse(p.has_next()) @@ -304,7 +304,7 @@ class ModelPaginationTests(TestCase): self.assertQuerysetEqual(p[slice(2)], [ "", "", - ] + ] ) # After __getitem__ is called, object_list is a list self.assertIsInstance(p.object_list, list) diff --git a/tests/prefetch_related/tests.py b/tests/prefetch_related/tests.py index b3290bfc69..db2fddeffe 100644 --- a/tests/prefetch_related/tests.py +++ b/tests/prefetch_related/tests.py @@ -637,7 +637,7 @@ class Ticket19607Tests(TestCase): for id, name1, name2 in [ (1, 'einfach', 'simple'), (2, 'schwierig', 'difficult'), - ]: + ]: LessonEntry.objects.create(id=id, name1=name1, name2=name2) for id, lesson_entry_id, name in [ @@ -645,7 +645,7 @@ class Ticket19607Tests(TestCase): (2, 1, 'simple'), (3, 2, 'schwierig'), (4, 2, 'difficult'), - ]: + ]: WordEntry.objects.create(id=id, lesson_entry_id=lesson_entry_id, name=name) def test_bug(self): diff --git a/tests/requests/tests.py b/tests/requests/tests.py index be10623f87..4dc00aec0a 100644 --- a/tests/requests/tests.py +++ b/tests/requests/tests.py @@ -480,7 +480,7 @@ class HostValidationTests(SimpleTestCase): 'forward.com', 'example.com', 'internal.com', '12.34.56.78', '[2001:19f0:feee::dead:beef:cafe]', 'xn--4ca9at.com', '.multitenant.com', 'INSENSITIVE.com', - ]) + ]) def test_http_get_host(self): # Check if X_FORWARDED_HOST is provided. request = HttpRequest() diff --git a/tests/runtests.py b/tests/runtests.py index da6c1c4fdf..a1c2601aa8 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -168,7 +168,7 @@ def setup(verbosity, test_labels): match = lambda label: ( module_label == label or # exact match module_label.startswith(label + '.') # ancestor match - ) + ) module_found_in_labels = any(match(l) for l in test_labels_set) diff --git a/tests/select_for_update/tests.py b/tests/select_for_update/tests.py index 24c9079040..7e06cc809a 100644 --- a/tests/select_for_update/tests.py +++ b/tests/select_for_update/tests.py @@ -68,7 +68,7 @@ class SelectForUpdateTests(TransactionTestCase): sql = 'SELECT * FROM %(db_table)s %(for_update)s;' % { 'db_table': Person._meta.db_table, 'for_update': self.new_connection.ops.for_update_sql(), - } + } self.cursor.execute(sql, ()) self.cursor.fetchone() diff --git a/tests/serializers_regress/tests.py b/tests/serializers_regress/tests.py index a35d7851e0..9094e3d2ce 100644 --- a/tests/serializers_regress/tests.py +++ b/tests/serializers_regress/tests.py @@ -559,7 +559,7 @@ def naturalKeyTest(format, self): for format in [ f for f in serializers.get_serializer_formats() if not isinstance(serializers.get_serializer(f), serializers.BadSerializer) - ]: +]: setattr(SerializerTests, 'test_' + format + '_serializer', curry(serializerTest, format)) setattr(SerializerTests, 'test_' + format + '_natural_key_serializer', curry(naturalKeySerializerTest, format)) setattr(SerializerTests, 'test_' + format + '_serializer_fields', curry(fieldsTest, format)) diff --git a/tests/signing/tests.py b/tests/signing/tests.py index 5c5c2b1da7..8b470b9a38 100644 --- a/tests/signing/tests.py +++ b/tests/signing/tests.py @@ -33,7 +33,7 @@ class TestSigner(TestCase): signer.signature('hello'), signing.base64_hmac('extra-salt' + 'signer', 'hello', 'predictable-secret').decode() - ) + ) self.assertNotEqual( signing.Signer('predictable-secret', salt='one').signature('hello'), signing.Signer('predictable-secret', salt='two').signature('hello')) diff --git a/tests/template_tests/templatetags/custom.py b/tests/template_tests/templatetags/custom.py index 5e96ca8eb7..cdcabd8ffe 100644 --- a/tests/template_tests/templatetags/custom.py +++ b/tests/template_tests/templatetags/custom.py @@ -81,7 +81,7 @@ def simple_unlimited_args_kwargs(one, two='hi', *args, **kwargs): return "simple_unlimited_args_kwargs - Expected result: %s / %s" % ( ', '.join(six.text_type(arg) for arg in [one, two] + list(args)), ', '.join('%s=%s' % (k, v) for (k, v) in sorted_kwarg) - ) + ) simple_unlimited_args_kwargs.anything = "Expected simple_unlimited_args_kwargs __dict__" @register.simple_tag(takes_context=True) @@ -232,7 +232,7 @@ def inclusion_unlimited_args_kwargs(one, two='hi', *args, **kwargs): return {"result": "inclusion_unlimited_args_kwargs - Expected result: %s / %s" % ( ', '.join(six.text_type(arg) for arg in [one, two] + list(args)), ', '.join('%s=%s' % (k, v) for (k, v) in sorted_kwarg) - )} + )} inclusion_unlimited_args_kwargs.anything = "Expected inclusion_unlimited_args_kwargs __dict__" @register.inclusion_tag('inclusion.html', takes_context=True) @@ -303,7 +303,7 @@ def assignment_unlimited_args_kwargs(one, two='hi', *args, **kwargs): return "assignment_unlimited_args_kwargs - Expected result: %s / %s" % ( ', '.join(six.text_type(arg) for arg in [one, two] + list(args)), ', '.join('%s=%s' % (k, v) for (k, v) in sorted_kwarg) - ) + ) assignment_unlimited_args_kwargs.anything = "Expected assignment_unlimited_args_kwargs __dict__" @register.assignment_tag(takes_context=True) diff --git a/tests/template_tests/test_loaders.py b/tests/template_tests/test_loaders.py index 41aa3b5826..8acfe93a19 100644 --- a/tests/template_tests/test_loaders.py +++ b/tests/template_tests/test_loaders.py @@ -112,7 +112,7 @@ class CachedLoader(unittest.TestCase): settings.TEMPLATE_LOADERS = ( ('django.template.loaders.cached.Loader', ( 'django.template.loaders.filesystem.Loader', - ) + ) ), ) def tearDown(self): diff --git a/tests/template_tests/test_parser.py b/tests/template_tests/test_parser.py index 8deb11da89..b9468fa303 100644 --- a/tests/template_tests/test_parser.py +++ b/tests/template_tests/test_parser.py @@ -123,7 +123,7 @@ class ParserTests(TestCase): '1|two_arguments', '1|two_arguments:"1"', '1|two_one_opt_arg', - ): + ): with self.assertRaises(TemplateSyntaxError): FilterExpression(expr, p) for expr in ( @@ -135,5 +135,5 @@ class ParserTests(TestCase): '1|one_opt_argument:"1"', # Not supplying all '1|two_one_opt_arg:"1"', - ): + ): FilterExpression(expr, p) diff --git a/tests/template_tests/test_response.py b/tests/template_tests/test_response.py index fe58a58d6d..b4dceb195d 100644 --- a/tests/template_tests/test_response.py +++ b/tests/template_tests/test_response.py @@ -152,7 +152,7 @@ class SimpleTemplateResponseTest(TestCase): response = SimpleTemplateResponse('first/test.html', { 'value': 123, 'fn': datetime.now, - }) + }) self.assertRaises(ContentNotRenderedError, pickle.dumps, response) @@ -180,7 +180,7 @@ class SimpleTemplateResponseTest(TestCase): response = SimpleTemplateResponse('first/test.html', { 'value': 123, 'fn': datetime.now, - }) + }) self.assertRaises(ContentNotRenderedError, pickle.dumps, response) @@ -193,7 +193,7 @@ class SimpleTemplateResponseTest(TestCase): response = SimpleTemplateResponse('first/test.html', { 'value': 123, 'fn': datetime.now, - }) + }) response.cookies['key'] = 'value' @@ -286,7 +286,7 @@ class TemplateResponseTest(TestCase): response = SimpleTemplateResponse('first/test.html', { 'value': 123, 'fn': datetime.now, - }) + }) self.assertRaises(ContentNotRenderedError, pickle.dumps, response) diff --git a/tests/template_tests/tests.py b/tests/template_tests/tests.py index 4139402506..ef3b4588a6 100644 --- a/tests/template_tests/tests.py +++ b/tests/template_tests/tests.py @@ -573,7 +573,7 @@ class TemplateTests(TransRealMixin, TestCase): ('', False, normal_string_result), (expected_invalid_str, False, invalid_string_result), ('', True, template_debug_result) - ]: + ]: settings.TEMPLATE_STRING_IF_INVALID = invalid_str settings.TEMPLATE_DEBUG = template_debug for is_cached in (False, True): diff --git a/tests/test_runner/tests.py b/tests/test_runner/tests.py index 00b5e9c978..50655218f4 100644 --- a/tests/test_runner/tests.py +++ b/tests/test_runner/tests.py @@ -355,7 +355,7 @@ class DeprecationDisplayTest(AdminScriptTestCase): def setUp(self): settings = { 'DATABASES': '{"default": {"ENGINE":"django.db.backends.sqlite3", "NAME":":memory:"}}' - } + } self.write_settings('settings.py', sdict=settings) def tearDown(self): diff --git a/tests/utils_tests/test_html.py b/tests/utils_tests/test_html.py index 28e9e326e0..ddfc67c1f1 100644 --- a/tests/utils_tests/test_html.py +++ b/tests/utils_tests/test_html.py @@ -49,7 +49,7 @@ class TestUtilsHtml(TestCase): fourth=html.mark_safe("safe again") ), "< Dangerous > safe < dangerous again safe again" - ) + ) def test_linebreaks(self): f = html.linebreaks diff --git a/tests/utils_tests/test_jslex.py b/tests/utils_tests/test_jslex.py index a2af7b4bcf..084e2feb5b 100644 --- a/tests/utils_tests/test_jslex.py +++ b/tests/utils_tests/test_jslex.py @@ -103,7 +103,7 @@ class JsTokensTest(TestCase): "id value", "punct .", "id replace", "punct (", r"regex /\\/g", "punct ,", r'string "\\\\"', "punct )", "punct .", "id replace", "punct (", r'regex /"/g', "punct ,", r'string "\\\""', "punct )", "punct +", r'string "\")"', "punct ;"]), - ] + ] def make_function(input, toks): def test_func(self): diff --git a/tests/validation/test_unique.py b/tests/validation/test_unique.py index 79b197a262..e0c5e3fd3a 100644 --- a/tests/validation/test_unique.py +++ b/tests/validation/test_unique.py @@ -43,7 +43,7 @@ class GetUniqueCheckTests(unittest.TestCase): [(UniqueForDateModel, 'date', 'count', 'start_date'), (UniqueForDateModel, 'year', 'count', 'end_date'), (UniqueForDateModel, 'month', 'order', 'end_date')] - ), m._get_unique_checks() + ), m._get_unique_checks() ) def test_unique_for_date_exclusion(self): @@ -52,7 +52,7 @@ class GetUniqueCheckTests(unittest.TestCase): [(UniqueForDateModel, ('id',))], [(UniqueForDateModel, 'year', 'count', 'end_date'), (UniqueForDateModel, 'month', 'order', 'end_date')] - ), m._get_unique_checks(exclude='start_date') + ), m._get_unique_checks(exclude='start_date') ) class PerformUniqueChecksTest(TestCase): diff --git a/tests/view_tests/tests/test_static.py b/tests/view_tests/tests/test_static.py index 8f67890c11..a31f2d7d5a 100644 --- a/tests/view_tests/tests/test_static.py +++ b/tests/view_tests/tests/test_static.py @@ -59,7 +59,7 @@ class StaticTests(SimpleTestCase): HTTP_IF_MODIFIED_SINCE='Mon, 18 Jan 2038 05:14:07 GMT' # This is 24h before max Unix time. Remember to fix Django and # update this test well before 2038 :) - ) + ) self.assertIsInstance(response, HttpResponseNotModified) def test_invalid_if_modified_since(self): diff --git a/tests/view_tests/views.py b/tests/view_tests/views.py index 6e8fa7f813..139862e2c0 100644 --- a/tests/view_tests/views.py +++ b/tests/view_tests/views.py @@ -154,7 +154,7 @@ def send_log(request, exc_info): admin_email_handler = [ h for h in logger.handlers if h.__class__.__name__ == "AdminEmailHandler" - ][0] + ][0] orig_filters = admin_email_handler.filters admin_email_handler.filters = [] admin_email_handler.include_html = True diff --git a/tests/wsgi/tests.py b/tests/wsgi/tests.py index bf8bc2d60b..c93094d24c 100644 --- a/tests/wsgi/tests.py +++ b/tests/wsgi/tests.py @@ -34,7 +34,7 @@ class WSGITest(TestCase): PATH_INFO="/", CONTENT_TYPE="text/html; charset=utf-8", REQUEST_METHOD="GET" - ) + ) response_data = {} diff --git a/tests/wsgi/urls.py b/tests/wsgi/urls.py index 9639f0fd34..7c6701adec 100644 --- a/tests/wsgi/urls.py +++ b/tests/wsgi/urls.py @@ -7,4 +7,4 @@ def helloworld(request): urlpatterns = patterns( "", url("^$", helloworld) - ) +)