Not skip maxsize control of SafeRepr

This commit is contained in:
Itxaso Aizpurua 2022-10-08 09:15:58 +02:00
parent d5ed3e1aaa
commit 42db2b03f7
1 changed files with 1 additions and 0 deletions

View File

@ -62,6 +62,7 @@ class SafeRepr(reprlib.Repr):
s = ascii(x)
else:
s = super().repr(x)
except (KeyboardInterrupt, SystemExit):
raise
except BaseException as exc: