MCPcopy Index your code
hub / github.com/MagicStack/httptools / initialize_options

Method initialize_options

setup.py:38–52  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

36 ]
37
38 def initialize_options(self):
39 # initialize_options() may be called multiple times on the
40 # same command object, so make sure not to override previously
41 # set options.
42 if getattr(self, '_initialized', False):
43 return
44
45 super().initialize_options()
46 self.use_system_llhttp = False
47 self.use_system_http_parser = False
48 self.cython_always = False
49 self.cython_annotate = None
50 self.cython_directives = None
51 if 'editable_wheel' in sys.argv:
52 self.inplace = True
53
54 def finalize_options(self):
55 # finalize_options() may be called multiple times on the

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected