MCPcopy
hub / github.com/benoitc/gunicorn / make_settings

Function make_settings

gunicorn/config.py:28–36  ·  view source on GitHub ↗
(ignore=None)

Source from the content-addressed store, hash-verified

26
27
28def make_settings(ignore=None):
29 settings = {}
30 ignore = ignore or ()
31 for s in KNOWN_SETTINGS:
32 setting = s()
33 if setting.name in ignore:
34 continue
35 settings[setting.name] = setting.copy()
36 return settings
37
38
39def auto_int(_, x):

Callers 1

__init__Method · 0.85

Calls 1

copyMethod · 0.80

Tested by

no test coverage detected