diff --git a/django/contrib/admin/validation.py b/django/contrib/admin/validation.py index e4a12211b52..84f8b67e4db 100644 --- a/django/contrib/admin/validation.py +++ b/django/contrib/admin/validation.py @@ -403,7 +403,7 @@ class InlineValidator(BaseValidator): def check_type(cls, attr, type_): if getattr(cls, attr, None) is not None and not isinstance(getattr(cls, attr), type_): raise ImproperlyConfigured("'%s.%s' should be a %s." - % (cls.__name__, attr, type_.__name__ )) + % (cls.__name__, attr, type_.__name__)) def check_isseq(cls, label, obj): if not isinstance(obj, (list, tuple)): diff --git a/django/contrib/comments/moderation.py b/django/contrib/comments/moderation.py index cdf00a9a24d..03c3583e68b 100644 --- a/django/contrib/comments/moderation.py +++ b/django/contrib/comments/moderation.py @@ -238,8 +238,8 @@ class CommentModerator(object): return recipient_list = [manager_tuple[1] for manager_tuple in settings.MANAGERS] t = loader.get_template('comments/comment_notification_email.txt') - c = Context({ 'comment': comment, - 'content_object': content_object }) + c = Context({'comment': comment, + 'content_object': content_object}) subject = '[%s] New comment posted on "%s"' % (get_current_site(request).name, content_object) message = t.render(c) diff --git a/django/contrib/gis/db/backends/postgis/introspection.py b/django/contrib/gis/db/backends/postgis/introspection.py index 7df09d09371..0b179934b6f 100644 --- a/django/contrib/gis/db/backends/postgis/introspection.py +++ b/django/contrib/gis/db/backends/postgis/introspection.py @@ -32,7 +32,7 @@ class PostGISIntrospection(DatabaseIntrospection): try: cursor.execute(oid_sql, ('geometry',)) GEOM_TYPE = cursor.fetchone()[0] - postgis_types = { GEOM_TYPE : 'GeometryField' } + postgis_types = {GEOM_TYPE : 'GeometryField'} if self.connection.ops.geography: cursor.execute(oid_sql, ('geography',)) GEOG_TYPE = cursor.fetchone()[0] diff --git a/django/contrib/gis/db/models/sql/compiler.py b/django/contrib/gis/db/models/sql/compiler.py index 94ce30ba5da..31249d0a00d 100644 --- a/django/contrib/gis/db/models/sql/compiler.py +++ b/django/contrib/gis/db/models/sql/compiler.py @@ -226,8 +226,8 @@ class GeoSQLCompiler(compiler.SQLCompiler): # transformed geometries have an SRID different than that of the # field -- this is only used by `transform` for Oracle and # SpatiaLite backends. - if self.query.transformed_srid and ( self.connection.ops.oracle or - self.connection.ops.spatialite ): + if self.query.transformed_srid and (self.connection.ops.oracle or + self.connection.ops.spatialite): sel_fmt = "'SRID=%d;'||%s" % (self.query.transformed_srid, sel_fmt) else: sel_fmt = '%s' diff --git a/django/contrib/gis/db/models/sql/where.py b/django/contrib/gis/db/models/sql/where.py index c29533bf840..b37cda21858 100644 --- a/django/contrib/gis/db/models/sql/where.py +++ b/django/contrib/gis/db/models/sql/where.py @@ -36,8 +36,8 @@ class GeoWhereNode(WhereNode): def _prepare_data(self, data): if isinstance(data, (list, tuple)): obj, lookup_type, value = data - if ( isinstance(obj, Constraint) and - isinstance(obj.field, GeometryField) ): + if (isinstance(obj, Constraint) and + isinstance(obj.field, GeometryField)): data = (GeoConstraint(obj), lookup_type, value) return super(GeoWhereNode, self)._prepare_data(data) diff --git a/django/contrib/gis/gdal/error.py b/django/contrib/gis/gdal/error.py index bd337adbb1c..b121258ac8c 100644 --- a/django/contrib/gis/gdal/error.py +++ b/django/contrib/gis/gdal/error.py @@ -19,15 +19,16 @@ class OGRIndexError(OGRException, KeyError): #### OGR error checking codes and routine #### # OGR Error Codes -OGRERR_DICT = { 1 : (OGRException, 'Not enough data.'), - 2 : (OGRException, 'Not enough memory.'), - 3 : (OGRException, 'Unsupported geometry type.'), - 4 : (OGRException, 'Unsupported operation.'), - 5 : (OGRException, 'Corrupt data.'), - 6 : (OGRException, 'OGR failure.'), - 7 : (SRSException, 'Unsupported SRS.'), - 8 : (OGRException, 'Invalid handle.'), - } +OGRERR_DICT = { + 1: (OGRException, 'Not enough data.'), + 2: (OGRException, 'Not enough memory.'), + 3: (OGRException, 'Unsupported geometry type.'), + 4: (OGRException, 'Unsupported operation.'), + 5: (OGRException, 'Corrupt data.'), + 6: (OGRException, 'OGR failure.'), + 7: (SRSException, 'Unsupported SRS.'), + 8: (OGRException, 'Invalid handle.'), +} OGRERR_NONE = 0 def check_err(code): diff --git a/django/contrib/gis/gdal/field.py b/django/contrib/gis/gdal/field.py index 39f5fd59bff..287942e5959 100644 --- a/django/contrib/gis/gdal/field.py +++ b/django/contrib/gis/gdal/field.py @@ -178,17 +178,18 @@ class OFTStringList(Field): pass class OFTWideStringList(Field): pass # Class mapping dictionary for OFT Types and reverse mapping. -OGRFieldTypes = { 0 : OFTInteger, - 1 : OFTIntegerList, - 2 : OFTReal, - 3 : OFTRealList, - 4 : OFTString, - 5 : OFTStringList, - 6 : OFTWideString, - 7 : OFTWideStringList, - 8 : OFTBinary, - 9 : OFTDate, - 10 : OFTTime, - 11 : OFTDateTime, - } +OGRFieldTypes = { + 0: OFTInteger, + 1: OFTIntegerList, + 2: OFTReal, + 3: OFTRealList, + 4: OFTString, + 5: OFTStringList, + 6: OFTWideString, + 7: OFTWideStringList, + 8: OFTBinary, + 9: OFTDate, + 10: OFTTime, + 11: OFTDateTime, +} ROGRFieldTypes = dict((cls, num) for num, cls in OGRFieldTypes.items()) diff --git a/django/contrib/gis/gdal/geometries.py b/django/contrib/gis/gdal/geometries.py index a168c796861..2b051cdca8c 100644 --- a/django/contrib/gis/gdal/geometries.py +++ b/django/contrib/gis/gdal/geometries.py @@ -151,8 +151,8 @@ class OGRGeometry(GDALBase): def from_bbox(cls, bbox): "Constructs a Polygon from a bounding box (4-tuple)." x0, y0, x1, y1 = bbox - return OGRGeometry( 'POLYGON((%s %s, %s %s, %s %s, %s %s, %s %s))' % ( - x0, y0, x0, y1, x1, y1, x1, y0, x0, y0) ) + return OGRGeometry('POLYGON((%s %s, %s %s, %s %s, %s %s, %s %s))' % ( + x0, y0, x0, y1, x1, y1, x1, y0, x0, y0)) ### Geometry set-like operations ### # g = g1 | g2 diff --git a/django/contrib/gis/gdal/tests/test_geom.py b/django/contrib/gis/gdal/tests/test_geom.py index 65207bf0c8f..f041e8cc587 100644 --- a/django/contrib/gis/gdal/tests/test_geom.py +++ b/django/contrib/gis/gdal/tests/test_geom.py @@ -205,7 +205,7 @@ class OGRGeomTest(unittest.TestCase, TestDataMixin): # Testing `from_bbox` class method bbox = (-180, -90, 180, 90) - p = OGRGeometry.from_bbox( bbox ) + p = OGRGeometry.from_bbox(bbox) self.assertEqual(bbox, p.extent) prev = OGRGeometry('POINT(0 0)') diff --git a/django/contrib/gis/geoip/prototypes.py b/django/contrib/gis/geoip/prototypes.py index c13dd8aba2e..fd7c8024265 100644 --- a/django/contrib/gis/geoip/prototypes.py +++ b/django/contrib/gis/geoip/prototypes.py @@ -22,9 +22,10 @@ class GeoIPRecord(Structure): ('continent_code', c_char_p), ] geoip_char_fields = [name for name, ctype in GeoIPRecord._fields_ if ctype is c_char_p] -geoip_encodings = { 0: 'iso-8859-1', - 1: 'utf8', - } +geoip_encodings = { + 0: 'iso-8859-1', + 1: 'utf8', +} class GeoIPTag(Structure): pass diff --git a/django/contrib/gis/geos/mutable_list.py b/django/contrib/gis/geos/mutable_list.py index 0418282bfe9..7184f78f842 100644 --- a/django/contrib/gis/geos/mutable_list.py +++ b/django/contrib/gis/geos/mutable_list.py @@ -96,9 +96,9 @@ class ListMixin(object): indexRange = range(*index.indices(origLen)) newLen = origLen - len(indexRange) - newItems = ( self._get_single_internal(i) + newItems = (self._get_single_internal(i) for i in xrange(origLen) - if i not in indexRange ) + if i not in indexRange) self._rebuild(newLen, newItems) diff --git a/django/contrib/gis/geos/tests/test_mutable_list.py b/django/contrib/gis/geos/tests/test_mutable_list.py index 4507be53741..1a3bc16d302 100644 --- a/django/contrib/gis/geos/tests/test_mutable_list.py +++ b/django/contrib/gis/geos/tests/test_mutable_list.py @@ -116,7 +116,7 @@ class ListMixinTest(unittest.TestCase): self.assertEqual(pl, ul[:], 'set slice [%d:%d]' % (i, j)) for k in self.step_range(): - ssl = nextRange( len(ul[i:j:k]) ) + ssl = nextRange(len(ul[i:j:k])) ul[i:j:k] = ssl pl[i:j:k] = ssl self.assertEqual(pl, ul[:], 'set slice [%d:%d:%d]' % (i, j, k)) @@ -127,12 +127,12 @@ class ListMixinTest(unittest.TestCase): self.assertRaises(ValueError, setfcn, ul, i, j, k, sliceLen - 1) for k in self.step_range(): - ssl = nextRange( len(ul[i::k]) ) + ssl = nextRange(len(ul[i::k])) ul[i::k] = ssl pl[i::k] = ssl self.assertEqual(pl, ul[:], 'set slice [%d::%d]' % (i, k)) - ssl = nextRange( len(ul[:i:k]) ) + ssl = nextRange(len(ul[:i:k])) ul[:i:k] = ssl pl[:i:k] = ssl self.assertEqual(pl, ul[:], 'set slice [:%d:%d]' % (i, k)) diff --git a/django/contrib/gis/maps/google/zoom.py b/django/contrib/gis/maps/google/zoom.py index c93cf4ef486..af1dee14e60 100644 --- a/django/contrib/gis/maps/google/zoom.py +++ b/django/contrib/gis/maps/google/zoom.py @@ -95,7 +95,7 @@ class GoogleZoom(object): lon = (px[0] - npix) / self._degpp[zoom] # Calculating the latitude value. - lat = RTOD * ( 2 * atan(exp((px[1] - npix)/ (-1.0 * self._radpp[zoom]))) - 0.5 * pi) + lat = RTOD * (2 * atan(exp((px[1] - npix)/ (-1.0 * self._radpp[zoom]))) - 0.5 * pi) # Returning the longitude, latitude coordinate pair. return (lon, lat) diff --git a/django/contrib/gis/tests/distapp/tests.py b/django/contrib/gis/tests/distapp/tests.py index 67dbad0ecbf..e9298b97e15 100644 --- a/django/contrib/gis/tests/distapp/tests.py +++ b/django/contrib/gis/tests/distapp/tests.py @@ -140,7 +140,7 @@ class DistanceTest(TestCase): # Testing geodetic distance calculation with a non-point geometry # (a LineString of Wollongong and Shellharbour coords). - ls = LineString( ( (150.902, -34.4245), (150.87, -34.5789) ) ) + ls = LineString(((150.902, -34.4245), (150.87, -34.5789))) if oracle or connection.ops.geography: # Reference query: # SELECT ST_distance_sphere(point, ST_GeomFromText('LINESTRING(150.9020 -34.4245,150.8700 -34.5789)', 4326)) FROM distapp_australiacity ORDER BY name; diff --git a/django/contrib/gis/tests/geo3d/tests.py b/django/contrib/gis/tests/geo3d/tests.py index 6fdf67042b1..3dc8451bac8 100644 --- a/django/contrib/gis/tests/geo3d/tests.py +++ b/django/contrib/gis/tests/geo3d/tests.py @@ -46,7 +46,7 @@ city_dict = dict((name, coords) for name, coords in city_data) interstate_data = ( ('I-45', 'LINESTRING(-95.3708481 29.7765870 11.339,-95.3694580 29.7787980 4.536,-95.3690305 29.7797359 9.762,-95.3691886 29.7812450 12.448,-95.3696447 29.7850144 10.457,-95.3702511 29.7868518 9.418,-95.3706724 29.7881286 14.858,-95.3711632 29.7896157 15.386,-95.3714525 29.7936267 13.168,-95.3717848 29.7955007 15.104,-95.3717719 29.7969804 16.516,-95.3717305 29.7982117 13.923,-95.3717254 29.8000778 14.385,-95.3719875 29.8013539 15.160,-95.3720575 29.8026785 15.544,-95.3721321 29.8040912 14.975,-95.3722074 29.8050998 15.688,-95.3722779 29.8060430 16.099,-95.3733818 29.8076750 15.197,-95.3741563 29.8103686 17.268,-95.3749458 29.8129927 19.857,-95.3763564 29.8144557 15.435)', - ( 11.339, 4.536, 9.762, 12.448, 10.457, 9.418, 14.858, + (11.339, 4.536, 9.762, 12.448, 10.457, 9.418, 14.858, 15.386, 13.168, 15.104, 16.516, 13.923, 14.385, 15.16 , 15.544, 14.975, 15.688, 16.099, 15.197, 17.268, 19.857, 15.435), diff --git a/django/contrib/gis/tests/geoapp/tests.py b/django/contrib/gis/tests/geoapp/tests.py index adb8426f677..2ef8a5349c9 100644 --- a/django/contrib/gis/tests/geoapp/tests.py +++ b/django/contrib/gis/tests/geoapp/tests.py @@ -459,12 +459,14 @@ class GeoQuerySetTest(TestCase): @no_spatialite def test_force_rhr(self): "Testing GeoQuerySet.force_rhr()." - rings = ( ( (0, 0), (5, 0), (0, 5), (0, 0) ), - ( (1, 1), (1, 3), (3, 1), (1, 1) ), - ) - rhr_rings = ( ( (0, 0), (0, 5), (5, 0), (0, 0) ), - ( (1, 1), (3, 1), (1, 3), (1, 1) ), - ) + rings = ( + ((0, 0), (5, 0), (0, 5), (0, 0)), + ((1, 1), (1, 3), (3, 1), (1, 1)), + ) + rhr_rings = ( + ((0, 0), (0, 5), (5, 0), (0, 0)), + ((1, 1), (3, 1), (1, 3), (1, 1)), + ) State.objects.create(name='Foo', poly=Polygon(*rings)) s = State.objects.force_rhr().get(name='Foo') self.assertEqual(rhr_rings, s.force_rhr.coords) @@ -648,7 +650,7 @@ class GeoQuerySetTest(TestCase): @no_spatialite def test_reverse_geom(self): "Testing GeoQuerySet.reverse_geom()." - coords = [ (-95.363151, 29.763374), (-95.448601, 29.713803) ] + coords = [(-95.363151, 29.763374), (-95.448601, 29.713803)] Track.objects.create(name='Foo', line=LineString(coords)) t = Track.objects.reverse_geom().get(name='Foo') coords.reverse() diff --git a/django/core/context_processors.py b/django/core/context_processors.py index ca1ac68f555..910ceb72d5d 100644 --- a/django/core/context_processors.py +++ b/django/core/context_processors.py @@ -31,7 +31,7 @@ def csrf(request): return smart_text(token) _get_val = lazy(_get_val, six.text_type) - return {'csrf_token': _get_val() } + return {'csrf_token': _get_val()} def debug(request): "Returns context variables helpful for debugging." diff --git a/django/dispatch/saferef.py b/django/dispatch/saferef.py index b816e711595..41756a1001e 100644 --- a/django/dispatch/saferef.py +++ b/django/dispatch/saferef.py @@ -32,7 +32,7 @@ def safeRef(target, onDelete = None): if callable(onDelete): return weakref.ref(target, onDelete) else: - return weakref.ref( target ) + return weakref.ref(target) class BoundMethodWeakref(object): """'Safe' and reusable weak references to instance methods @@ -70,7 +70,7 @@ class BoundMethodWeakref(object): _allInstances = weakref.WeakValueDictionary() - def __new__( cls, target, onDelete=None, *arguments,**named ): + def __new__(cls, target, onDelete=None, *arguments,**named): """Create new instance or return current instance Basically this method of construction allows us to @@ -85,12 +85,12 @@ class BoundMethodWeakref(object): key = cls.calculateKey(target) current =cls._allInstances.get(key) if current is not None: - current.deletionMethods.append( onDelete) + current.deletionMethods.append(onDelete) return current else: - base = super( BoundMethodWeakref, cls).__new__( cls ) + base = super(BoundMethodWeakref, cls).__new__(cls) cls._allInstances[key] = base - base.__init__( target, onDelete, *arguments,**named) + base.__init__(target, onDelete, *arguments,**named) return base def __init__(self, target, onDelete=None): @@ -112,13 +112,13 @@ class BoundMethodWeakref(object): methods = self.deletionMethods[:] del self.deletionMethods[:] try: - del self.__class__._allInstances[ self.key ] + del self.__class__._allInstances[self.key] except KeyError: pass for function in methods: try: - if callable( function ): - function( self ) + if callable(function): + function(self) except Exception as e: try: traceback.print_exc() @@ -127,20 +127,20 @@ class BoundMethodWeakref(object): self, function, e) ) self.deletionMethods = [onDelete] - self.key = self.calculateKey( target ) + self.key = self.calculateKey(target) self.weakSelf = weakref.ref(target.__self__, remove) self.weakFunc = weakref.ref(target.__func__, remove) self.selfName = str(target.__self__) self.funcName = str(target.__func__.__name__) - def calculateKey( cls, target ): + def calculateKey(cls, target): """Calculate the reference key for this reference Currently this is a two-tuple of the id()'s of the target object and the target function respectively. """ return (id(target.__self__),id(target.__func__)) - calculateKey = classmethod( calculateKey ) + calculateKey = classmethod(calculateKey) def __str__(self): """Give a friendly representation of the object""" @@ -155,7 +155,7 @@ class BoundMethodWeakref(object): def __hash__(self): return hash(self.key) - def __bool__( self ): + def __bool__(self): """Whether we are still a valid reference""" return self() is not None diff --git a/django/template/debug.py b/django/template/debug.py index 043dd91b4ed..94065512511 100644 --- a/django/template/debug.py +++ b/django/template/debug.py @@ -36,7 +36,7 @@ class DebugParser(Parser): self.command_stack = [] def enter_command(self, command, token): - self.command_stack.append( (command, token.source) ) + self.command_stack.append((command, token.source)) def exit_command(self): self.command_stack.pop() diff --git a/django/test/_doctest.py b/django/test/_doctest.py index 4f4837f3c68..2b90f1dc2e9 100644 --- a/django/test/_doctest.py +++ b/django/test/_doctest.py @@ -613,10 +613,10 @@ class DocTestParser: self._parse_example(m, name, lineno) # Create an Example, and add it to the list. if not self._IS_BLANK_OR_COMMENT(source): - output.append( Example(source, want, exc_msg, + output.append(Example(source, want, exc_msg, lineno=lineno, indent=min_indent+len(m.group('indent')), - options=options) ) + options=options)) # Update lineno (lines inside this example) lineno += string.count('\n', m.start(), m.end()) # Update charno. @@ -1498,7 +1498,7 @@ class DocTestRunner: if t == 0: notests.append(name) elif f == 0: - passed.append( (name, t) ) + passed.append((name, t)) else: failed.append(x) if verbose: diff --git a/django/utils/termcolors.py b/django/utils/termcolors.py index 8c66e338de9..2aabf089033 100644 --- a/django/utils/termcolors.py +++ b/django/utils/termcolors.py @@ -92,42 +92,42 @@ PALETTES = { 'MIGRATE_FAILURE': {}, }, DARK_PALETTE: { - 'ERROR': { 'fg': 'red', 'opts': ('bold',) }, - 'NOTICE': { 'fg': 'red' }, - 'SQL_FIELD': { 'fg': 'green', 'opts': ('bold',) }, - 'SQL_COLTYPE': { 'fg': 'green' }, - 'SQL_KEYWORD': { 'fg': 'yellow' }, - 'SQL_TABLE': { 'opts': ('bold',) }, - 'HTTP_INFO': { 'opts': ('bold',) }, - 'HTTP_SUCCESS': { }, - 'HTTP_REDIRECT': { 'fg': 'green' }, - 'HTTP_NOT_MODIFIED': { 'fg': 'cyan' }, - 'HTTP_BAD_REQUEST': { 'fg': 'red', 'opts': ('bold',) }, - 'HTTP_NOT_FOUND': { 'fg': 'yellow' }, - 'HTTP_SERVER_ERROR': { 'fg': 'magenta', 'opts': ('bold',) }, - 'MIGRATE_HEADING': { 'fg': 'cyan', 'opts': ('bold',) }, - 'MIGRATE_LABEL': { 'opts': ('bold',) }, - 'MIGRATE_SUCCESS': { 'fg': 'green', 'opts': ('bold',) }, - 'MIGRATE_FAILURE': { 'fg': 'red', 'opts': ('bold',) }, + 'ERROR': {'fg': 'red', 'opts': ('bold',)}, + 'NOTICE': {'fg': 'red'}, + 'SQL_FIELD': {'fg': 'green', 'opts': ('bold',)}, + 'SQL_COLTYPE': {'fg': 'green'}, + 'SQL_KEYWORD': {'fg': 'yellow'}, + 'SQL_TABLE': {'opts': ('bold',)}, + 'HTTP_INFO': {'opts': ('bold',)}, + 'HTTP_SUCCESS': {}, + 'HTTP_REDIRECT': {'fg': 'green'}, + 'HTTP_NOT_MODIFIED': {'fg': 'cyan'}, + 'HTTP_BAD_REQUEST': {'fg': 'red', 'opts': ('bold',)}, + 'HTTP_NOT_FOUND': {'fg': 'yellow'}, + 'HTTP_SERVER_ERROR': {'fg': 'magenta', 'opts': ('bold',)}, + 'MIGRATE_HEADING': {'fg': 'cyan', 'opts': ('bold',)}, + 'MIGRATE_LABEL': {'opts': ('bold',)}, + 'MIGRATE_SUCCESS': {'fg': 'green', 'opts': ('bold',)}, + 'MIGRATE_FAILURE': {'fg': 'red', 'opts': ('bold',)}, }, LIGHT_PALETTE: { - 'ERROR': { 'fg': 'red', 'opts': ('bold',) }, - 'NOTICE': { 'fg': 'red' }, - 'SQL_FIELD': { 'fg': 'green', 'opts': ('bold',) }, - 'SQL_COLTYPE': { 'fg': 'green' }, - 'SQL_KEYWORD': { 'fg': 'blue' }, - 'SQL_TABLE': { 'opts': ('bold',) }, - 'HTTP_INFO': { 'opts': ('bold',) }, - 'HTTP_SUCCESS': { }, - 'HTTP_REDIRECT': { 'fg': 'green', 'opts': ('bold',) }, - 'HTTP_NOT_MODIFIED': { 'fg': 'green' }, - 'HTTP_BAD_REQUEST': { 'fg': 'red', 'opts': ('bold',) }, - 'HTTP_NOT_FOUND': { 'fg': 'red' }, - 'HTTP_SERVER_ERROR': { 'fg': 'magenta', 'opts': ('bold',) }, - 'MIGRATE_HEADING': { 'fg': 'cyan', 'opts': ('bold',) }, - 'MIGRATE_LABEL': { 'opts': ('bold',) }, - 'MIGRATE_SUCCESS': { 'fg': 'green', 'opts': ('bold',) }, - 'MIGRATE_FAILURE': { 'fg': 'red', 'opts': ('bold',) }, + 'ERROR': {'fg': 'red', 'opts': ('bold',)}, + 'NOTICE': {'fg': 'red'}, + 'SQL_FIELD': {'fg': 'green', 'opts': ('bold',)}, + 'SQL_COLTYPE': {'fg': 'green'}, + 'SQL_KEYWORD': {'fg': 'blue'}, + 'SQL_TABLE': {'opts': ('bold',)}, + 'HTTP_INFO': {'opts': ('bold',)}, + 'HTTP_SUCCESS': {}, + 'HTTP_REDIRECT': {'fg': 'green', 'opts': ('bold',)}, + 'HTTP_NOT_MODIFIED': {'fg': 'green'}, + 'HTTP_BAD_REQUEST': {'fg': 'red', 'opts': ('bold',)}, + 'HTTP_NOT_FOUND': {'fg': 'red'}, + 'HTTP_SERVER_ERROR': {'fg': 'magenta', 'opts': ('bold',)}, + 'MIGRATE_HEADING': {'fg': 'cyan', 'opts': ('bold',)}, + 'MIGRATE_LABEL': {'opts': ('bold',)}, + 'MIGRATE_SUCCESS': {'fg': 'green', 'opts': ('bold',)}, + 'MIGRATE_FAILURE': {'fg': 'red', 'opts': ('bold',)}, } } DEFAULT_PALETTE = DARK_PALETTE diff --git a/django/views/debug.py b/django/views/debug.py index ffb343f12ba..71b35364047 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -343,7 +343,7 @@ class ExceptionReporter(object): before = escape(template_source[upto:start]) during = escape(template_source[start:end]) after = escape(template_source[end:next]) - source_lines.append( (num, escape(template_source[upto:next])) ) + source_lines.append((num, escape(template_source[upto:next]))) upto = next total = len(source_lines) @@ -450,7 +450,7 @@ class ExceptionReporter(object): """ import traceback frames = self.get_traceback_frames() - tb = [ (f['filename'], f['lineno'], f['function'], f['context_line']) for f in frames ] + tb = [(f['filename'], f['lineno'], f['function'], f['context_line']) for f in frames] list = ['Traceback (most recent call last):\n'] list += traceback.format_list(tb) list += traceback.format_exception_only(self.exc_type, self.exc_value) diff --git a/setup.cfg b/setup.cfg index 6f3ccc6e53b..1eebbb21c6e 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,E121,E122,E201,E202,E203,E221,E227,E231,E261,E301,E303,E502,E701,F401,F403,F841,W601 +ignore=E123,E124,E125,E126,E127,E128,E225,E226,E241,E251,E302,E501,E121,E122,E203,E221,E227,E231,E261,E301,E303,E502,E701,F401,F403,F841,W601 [metadata] license-file = LICENSE diff --git a/tests/admin_custom_urls/tests.py b/tests/admin_custom_urls/tests.py index 1dc9da7efdc..7b46f4848ae 100644 --- a/tests/admin_custom_urls/tests.py +++ b/tests/admin_custom_urls/tests.py @@ -101,7 +101,7 @@ class CustomRedirects(TestCase): new object. Refs 8001, 18310, 19505. """ - post_data = { 'name': 'John Doe', } + post_data = {'name': 'John Doe'} self.assertEqual(Person.objects.count(), 0) response = self.client.post( reverse('admin:admin_custom_urls_person_add'), post_data) @@ -120,7 +120,7 @@ class CustomRedirects(TestCase): Person.objects.create(name='John Doe') self.assertEqual(Person.objects.count(), 1) person = Person.objects.all()[0] - post_data = { 'name': 'Jack Doe', } + post_data = {'name': 'Jack Doe'} response = self.client.post( reverse('admin:admin_custom_urls_person_change', args=[person.pk]), post_data) self.assertRedirects( @@ -131,7 +131,7 @@ class CustomRedirects(TestCase): Ensures that the ModelAdmin.response_add()'s parameter `post_url_continue` controls the redirection after an object has been created. """ - post_data = { 'name': 'SuperFast', '_continue': '1' } + post_data = {'name': 'SuperFast', '_continue': '1'} self.assertEqual(Car.objects.count(), 0) response = self.client.post( reverse('admin:admin_custom_urls_car_add'), post_data) diff --git a/tests/admin_widgets/tests.py b/tests/admin_widgets/tests.py index c75ffe5def0..3613fa2207f 100644 --- a/tests/admin_widgets/tests.py +++ b/tests/admin_widgets/tests.py @@ -367,7 +367,9 @@ class AdminFileWidgetTest(DjangoTestCase): w = widgets.AdminFileWidget() self.assertHTMLEqual( w.render('test', album.cover_art), - '
Currently: albums\hybrid_theory.jpg
Change:
Currently: albums\hybrid_theory.jpg
Change: