(obj: Any)
| 450 | threads = int(os.environ.get(self.envvar, self.default)) |
| 451 | |
| 452 | def _single_compile(obj: Any) -> None: |
| 453 | try: |
| 454 | src, ext = build[obj] |
| 455 | except KeyError: |
| 456 | return |
| 457 | |
| 458 | if not os.path.exists(obj) or self.needs_recompile(obj, src): |
| 459 | compiler._compile(obj, src, ext, cc_args, extra_postargs, pp_opts) # type: ignore[attr-defined] |
| 460 | |
| 461 | try: |
| 462 | # Importing .synchronize checks for platforms that have some multiprocessing |
nothing calls this directly
no outgoing calls
no test coverage detected