(self)
| 257 | user_options = [] |
| 258 | |
| 259 | def initialize_options(self): |
| 260 | self.commands = [] |
| 261 | for C in commands: |
| 262 | self.commands.append(C(self.distribution)) |
| 263 | for c in self.commands: |
| 264 | c.initialize_options() |
| 265 | |
| 266 | def finalize_options(self): |
| 267 | for c in self.commands: |
nothing calls this directly
no test coverage detected