Check if pyconfig.h.in has been regenerated.
(file_paths)
| 194 | |
| 195 | @status("pyconfig.h.in regenerated", modal=True, info=str) |
| 196 | def regenerated_pyconfig_h_in(file_paths): |
| 197 | """Check if pyconfig.h.in has been regenerated.""" |
| 198 | if 'configure.ac' in file_paths: |
| 199 | return "yes" if 'pyconfig.h.in' in file_paths else "no" |
| 200 | else: |
| 201 | return "not needed" |
| 202 | |
| 203 | |
| 204 | def main(): |
no outgoing calls
no test coverage detected
searching dependent graphs…