# HG changeset patch # User Gregory Szorc # Date 1579372023 28800 # Node ID 51fb449bd1a24338b2d05d14087a2d31f46c502c # Parent 35cd52c4a5cc86b469a949a99ed15c0e8d64447c py3: add extra traceback line present on Python 3.8 I'm not sure why Python 3.8 is outputting this line. It appears to be a change in behavior of formatting tracebacks on Python 3.8. So let's add it to expected output. With this change, test-hook.t now passes on Python 3.8. Differential Revision: https://phab.mercurial-scm.org/D7946 diff -r 35cd52c4a5cc -r 51fb449bd1a2 tests/test-hook.t --- a/tests/test-hook.t Sat Jan 18 10:12:41 2020 -0800 +++ b/tests/test-hook.t Sat Jan 18 10:27:03 2020 -0800 @@ -988,6 +988,7 @@ ModuleNotFoundError: No module named 'hgext_syntaxerror' (py36 !) Traceback (most recent call last): (py3 !) HookLoadError: preoutgoing.syntaxerror hook is invalid: import of "syntaxerror" failed (no-py3 !) + raise error.HookLoadError( (py38 !) mercurial.error.HookLoadError: preoutgoing.syntaxerror hook is invalid: import of "syntaxerror" failed (py3 !) abort: preoutgoing.syntaxerror hook is invalid: import of "syntaxerror" failed @@ -1161,6 +1162,7 @@ ModuleNotFoundError: No module named 'hgext_importfail' (py36 !) Traceback (most recent call last): HookLoadError: precommit.importfail hook is invalid: import of "importfail" failed (no-py3 !) + raise error.HookLoadError( (py38 !) mercurial.error.HookLoadError: precommit.importfail hook is invalid: import of "importfail" failed (py3 !) abort: precommit.importfail hook is invalid: import of "importfail" failed