Not skip maxsize control of SafeRepr
This commit is contained in:
parent
d5ed3e1aaa
commit
42db2b03f7
|
@ -62,6 +62,7 @@ class SafeRepr(reprlib.Repr):
|
||||||
s = ascii(x)
|
s = ascii(x)
|
||||||
else:
|
else:
|
||||||
s = super().repr(x)
|
s = super().repr(x)
|
||||||
|
|
||||||
except (KeyboardInterrupt, SystemExit):
|
except (KeyboardInterrupt, SystemExit):
|
||||||
raise
|
raise
|
||||||
except BaseException as exc:
|
except BaseException as exc:
|
||||||
|
|
Loading…
Reference in New Issue