diff options
Diffstat (limited to 'tests/basics/int_bytes_notimpl.py')
-rw-r--r-- | tests/basics/int_bytes_notimpl.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/basics/int_bytes_notimpl.py b/tests/basics/int_bytes_notimpl.py index b47d6ab584..b149f44966 100644 --- a/tests/basics/int_bytes_notimpl.py +++ b/tests/basics/int_bytes_notimpl.py @@ -2,8 +2,3 @@ try: print((10).to_bytes(1, "big")) except Exception as e: print(type(e)) - -try: - print(int.from_bytes(b"\0", "big")) -except Exception as e: - print(type(e)) |