diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-05-25 23:55:08 +0300 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2019-05-25 23:55:08 +0300 |
commit | 7192f83b6c3c2599ae940857428eb291b8c2d8f2 (patch) | |
tree | 73d67a9aef54b103d350a4adc450e7fb82efa8b2 /lib-python | |
parent | disable protocols not available on python2 (diff) | |
download | pypy-7192f83b6c3c2599ae940857428eb291b8c2d8f2.tar.gz pypy-7192f83b6c3c2599ae940857428eb291b8c2d8f2.tar.bz2 pypy-7192f83b6c3c2599ae940857428eb291b8c2d8f2.zip |
cleanup unused import
Diffstat (limited to 'lib-python')
-rw-r--r-- | lib-python/2.7/ctypes/test/test_byteswap.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib-python/2.7/ctypes/test/test_byteswap.py b/lib-python/2.7/ctypes/test/test_byteswap.py index ee523a74ab..d36402b40c 100644 --- a/lib-python/2.7/ctypes/test/test_byteswap.py +++ b/lib-python/2.7/ctypes/test/test_byteswap.py @@ -2,7 +2,6 @@ import sys, unittest, struct, math, ctypes from binascii import hexlify from ctypes import * -from ctypes.test import xfail def bin(s): return hexlify(memoryview(s)).upper() |