()
| 1447 | options.strict_bytes = True |
| 1448 | |
| 1449 | def set_strict_flags() -> None: |
| 1450 | nonlocal strict_option_set |
| 1451 | strict_option_set = True |
| 1452 | for dest, value in strict_flag_assignments: |
| 1453 | setattr(options, dest, value) |
| 1454 | |
| 1455 | # Parse config file first, so command line can override. |
| 1456 | parse_config_file(options, set_strict_flags, config_file, stdout, stderr) |
no test coverage detected
searching dependent graphs…