summaryrefslogtreecommitdiff
path: root/tests/basics/int_bytes_notimpl.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-06-15 13:56:21 +1000
committerDamien George <damien.p.george@gmail.com>2017-06-15 13:56:21 +1000
commit8c5632a869f10445dc5091c39ec73ca49cf83454 (patch)
tree932b9754b867c3173d899d53fca804a1bd03ffb6 /tests/basics/int_bytes_notimpl.py
parent2bf5a947b2b01f2be6c7b05707391dd09b240ad0 (diff)
py/objint: Support "big" byte-order in int.to_bytes().
Diffstat (limited to 'tests/basics/int_bytes_notimpl.py')
-rw-r--r--tests/basics/int_bytes_notimpl.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/basics/int_bytes_notimpl.py b/tests/basics/int_bytes_notimpl.py
deleted file mode 100644
index b149f4496..000000000
--- a/tests/basics/int_bytes_notimpl.py
+++ /dev/null
@@ -1,4 +0,0 @@
-try:
- print((10).to_bytes(1, "big"))
-except Exception as e:
- print(type(e))