Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c15424 commit cc1d31eCopy full SHA for cc1d31e
1 file changed
Tools/clinic/clinic.py
@@ -970,7 +970,10 @@ def is_stop_line(line):
970
if self.verify:
971
computed = compute_checksum(output)
972
if checksum != computed:
973
- fail("Checksum mismatch!\nExpected: {}\nComputed: {}".format(checksum, computed))
+ fail("Checksum mismatch!\nExpected: {}\nComputed: {}\n"
974
+ "Suggested fix: remove all generated code including "
975
+ "the end marker, or use the '-f' option."
976
+ .format(checksum, computed))
977
else:
978
# put back output
979
output_lines = output.splitlines(keepends=True)
0 commit comments