()
| 77 | _preprocessor_patch = None |
| 78 | |
| 79 | def get_patched_preprocessor(): |
| 80 | global _preprocessor_patch |
| 81 | if _preprocessor_patch is None: |
| 82 | _preprocessor_patch = SConsPreProcessorPatch() |
| 83 | return _preprocessor_patch.get_patched_preprocessor() |
| 84 | |
| 85 | def create_preprocessor_instance(): |
| 86 | global _preprocessor_patch |
nothing calls this directly
no test coverage detected