Removed duplicate words in various comments.
This commit is contained in:
parent
6e78e10549
commit
a73cf8110e
|
@ -27,7 +27,7 @@ class BaseSpatialFeatures:
|
||||||
supports_null_geometries = True
|
supports_null_geometries = True
|
||||||
# Are empty geometries supported?
|
# Are empty geometries supported?
|
||||||
supports_empty_geometries = False
|
supports_empty_geometries = False
|
||||||
# Can the the function be applied on geodetic coordinate systems?
|
# Can the function be applied on geodetic coordinate systems?
|
||||||
supports_distance_geodetic = True
|
supports_distance_geodetic = True
|
||||||
supports_length_geodetic = True
|
supports_length_geodetic = True
|
||||||
supports_perimeter_geodetic = False
|
supports_perimeter_geodetic = False
|
||||||
|
|
|
@ -6,7 +6,7 @@ from django.contrib.messages.storage.session import SessionStorage
|
||||||
class FallbackStorage(BaseStorage):
|
class FallbackStorage(BaseStorage):
|
||||||
"""
|
"""
|
||||||
Try to store all messages in the first backend. Store any unstored
|
Try to store all messages in the first backend. Store any unstored
|
||||||
messages in each subsequent backend backend.
|
messages in each subsequent backend.
|
||||||
"""
|
"""
|
||||||
storage_classes = (CookieStorage, SessionStorage)
|
storage_classes = (CookieStorage, SessionStorage)
|
||||||
|
|
||||||
|
|
|
@ -118,8 +118,8 @@ def call_command(command_name, *args, **options):
|
||||||
}
|
}
|
||||||
arg_options = {opt_mapping.get(key, key): value for key, value in options.items()}
|
arg_options = {opt_mapping.get(key, key): value for key, value in options.items()}
|
||||||
parse_args = [str(a) for a in args]
|
parse_args = [str(a) for a in args]
|
||||||
# Any required arguments which are passed in via **options must must be
|
# Any required arguments which are passed in via **options must be passed
|
||||||
# passed to parse_args().
|
# to parse_args().
|
||||||
parse_args += [
|
parse_args += [
|
||||||
'{}={}'.format(min(opt.option_strings), arg_options[opt.dest])
|
'{}={}'.format(min(opt.option_strings), arg_options[opt.dest])
|
||||||
for opt in parser._actions if opt.required and opt.dest in options
|
for opt in parser._actions if opt.required and opt.dest in options
|
||||||
|
|
|
@ -1484,8 +1484,8 @@ class Query:
|
||||||
joins = [alias]
|
joins = [alias]
|
||||||
# The transform can't be applied yet, as joins must be trimmed later.
|
# The transform can't be applied yet, as joins must be trimmed later.
|
||||||
# To avoid making every caller of this method look up transforms
|
# To avoid making every caller of this method look up transforms
|
||||||
# directly, compute transforms here and and create a partial that
|
# directly, compute transforms here and create a partial that converts
|
||||||
# converts fields to the appropriate wrapped version.
|
# fields to the appropriate wrapped version.
|
||||||
|
|
||||||
def final_transformer(field, alias):
|
def final_transformer(field, alias):
|
||||||
return field.get_col(alias)
|
return field.get_col(alias)
|
||||||
|
|
|
@ -626,7 +626,7 @@ class SimpleTestCase(unittest.TestCase):
|
||||||
|
|
||||||
def assertRaisesMessage(self, expected_exception, expected_message, *args, **kwargs):
|
def assertRaisesMessage(self, expected_exception, expected_message, *args, **kwargs):
|
||||||
"""
|
"""
|
||||||
Assert that expected_message is found in the the message of a raised
|
Assert that expected_message is found in the message of a raised
|
||||||
exception.
|
exception.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
|
|
|
@ -52,7 +52,7 @@ class Node:
|
||||||
return obj
|
return obj
|
||||||
|
|
||||||
def __len__(self):
|
def __len__(self):
|
||||||
"""Return the the number of children this node has."""
|
"""Return the number of children this node has."""
|
||||||
return len(self.children)
|
return len(self.children)
|
||||||
|
|
||||||
def __bool__(self):
|
def __bool__(self):
|
||||||
|
|
Loading…
Reference in New Issue