summaryrefslogtreecommitdiff
path: root/tests/basics/bytes_construct.py
diff options
context:
space:
mode:
authorGlenn Ruben Bakke <glennbakke@gmail.com>2017-03-07 17:46:34 +0100
committerGlenn Ruben Bakke <glennbakke@gmail.com>2017-03-07 17:46:34 +0100
commitfd8f2c36f539a386192d106ef5ca0ce6a3926aec (patch)
tree7b0bf8cb7a0677c1987b2d3e725f57cffc2e8633 /tests/basics/bytes_construct.py
parent5f705adae06d4925351fe716f956d0fc922e53cf (diff)
parentfd49ff991769a29b2dcc0f8ed88143487f2bd131 (diff)
Merge branch 'master' into nrf5_no_sdk
Diffstat (limited to 'tests/basics/bytes_construct.py')
-rw-r--r--tests/basics/bytes_construct.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/basics/bytes_construct.py b/tests/basics/bytes_construct.py
index 59e02f063..164738767 100644
--- a/tests/basics/bytes_construct.py
+++ b/tests/basics/bytes_construct.py
@@ -11,9 +11,6 @@ print(bytes(bytearray(4)))
print(bytes(array('b', [1, 2])))
print(bytes(array('h', [0x101, 0x202])))
-# long ints
-print(ord(bytes([14953042807679334000 & 0xff])))
-
# constructor value out of range
try:
bytes([-1])