forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythongh-113317: Rework Argument Clinic cpp.py error handling
Rework error handling in the C preprocessor helper. Instead of monkey- patching the cpp.Monitor.fail() method from within clinic.py, rewrite cpp.py to use a subclass of the ClinicError exception. Yak-shaving in preparation for putting cpp.py into libclinic.
- Loading branch information
1 parent
0651936
commit 19c720e
Showing
5 changed files
with
44 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import dataclasses as dc | ||
|
||
|
||
@dc.dataclass | ||
class ClinicError(Exception): | ||
message: str | ||
_: dc.KW_ONLY | ||
lineno: int | None = None | ||
filename: str | None = None | ||
|
||
def __post_init__(self) -> None: | ||
super().__init__(self.message) | ||
|
||
def report(self, *, warn_only: bool = False) -> str: | ||
msg = "Warning" if warn_only else "Error" | ||
if self.filename is not None: | ||
msg += f" in file {self.filename!r}" | ||
if self.lineno is not None: | ||
msg += f" on line {self.lineno}" | ||
msg += ":\n" | ||
msg += f"{self.message}\n" | ||
return msg | ||
|
||
|
||
class ParseError(ClinicError): | ||
pass |