(self)
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected