mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
remove a bunch of unnescesarry iterkeys() calls
This commit is contained in:
@@ -128,7 +128,7 @@ class OracleOperations(DatabaseOperations, BaseSpatialOperations):
|
||||
geometry_functions.update(distance_functions)
|
||||
|
||||
gis_terms = ['isnull']
|
||||
gis_terms += list(six.iterkeys(geometry_functions))
|
||||
gis_terms += list(geometry_functions)
|
||||
gis_terms = dict([(term, None) for term in gis_terms])
|
||||
|
||||
truncate_params = {'relate' : None}
|
||||
|
||||
Reference in New Issue
Block a user