358
359def err(msg):
360▶ print("\nconfigure: ERROR: " + msg + "\n")
361 sys.exit(1)
362
· · ·
581 set("dist.compression-formats", value.split(","), config)
582 else:
583▶ raise RuntimeError("unhandled option {}".format(option.name))
584
585
· · ·
626 cur_section = "target"
627 elif "." in cur_section:
628▶ raise RuntimeError(
629 "don't know how to deal with section: {}".format(cur_section)
630 )
· · ·
665 float(value)
666 return True
667▶ except ValueError:
668 return False
669
· · ·
699 )
700 else:
701▶ raise RuntimeError("no toml")
702
703
+ 5 more matches in this file