diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2024-05-21 23:16:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 23:16:56 (GMT) |
commit | a3e4fec8734a304d654e4ae24a4aa2f41a7b0640 (patch) | |
tree | a152e54e9dad1a39e40b2bfd5f2b167576dda446 /Lib/test/test_traceback.py | |
parent | 9fa206aaeccc979a4bd03852ba38c045294a3d6f (diff) | |
download | cpython-a3e4fec8734a304d654e4ae24a4aa2f41a7b0640.zip cpython-a3e4fec8734a304d654e4ae24a4aa2f41a7b0640.tar.gz cpython-a3e4fec8734a304d654e4ae24a4aa2f41a7b0640.tar.bz2 |
gh-118893: Evaluate all statements in the new REPL separately (#119318)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Lib/test/test_traceback.py')
-rw-r--r-- | Lib/test/test_traceback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py index 5987ec3..5035de1 100644 --- a/Lib/test/test_traceback.py +++ b/Lib/test/test_traceback.py @@ -543,7 +543,7 @@ class TracebackCases(unittest.TestCase): self.assertEqual( str(inspect.signature(traceback.format_exception_only)), - '(exc, /, value=<implicit>, *, show_group=False)') + '(exc, /, value=<implicit>, *, show_group=False, **kwargs)') class PurePythonExceptionFormattingMixin: |