mirror of https://github.com/django/django.git
Used frozenset instead of dict for GeoIP2.cache_options for simplicity.
This commit is contained in:
parent
fac74b84a3
commit
4302167939
|
@ -33,7 +33,7 @@ class GeoIP2:
|
||||||
MODE_FILE = 4
|
MODE_FILE = 4
|
||||||
# Load database into memory. Pure Python.
|
# Load database into memory. Pure Python.
|
||||||
MODE_MEMORY = 8
|
MODE_MEMORY = 8
|
||||||
cache_options = {opt: None for opt in (0, 1, 2, 4, 8)}
|
cache_options = frozenset((MODE_AUTO, MODE_MMAP_EXT, MODE_MMAP, MODE_FILE, MODE_MEMORY))
|
||||||
|
|
||||||
# Paths to the city & country binary databases.
|
# Paths to the city & country binary databases.
|
||||||
_city_file = ''
|
_city_file = ''
|
||||||
|
|
Loading…
Reference in New Issue