Raise a compiler error
(*args)
| 678 | |
| 679 | @staticmethod |
| 680 | def dist_error(*args): |
| 681 | """Raise a compiler error""" |
| 682 | from distutils.errors import CompileError |
| 683 | raise CompileError(_Distutils._dist_str(*args)) |
| 684 | |
| 685 | @staticmethod |
| 686 | def dist_fatal(*args): |