From: Mark Dickinson Date: Fri, 5 Mar 2010 14:44:08 +0000 (+0000) Subject: Remove unused imports & clean up sys imports in test_struct. X-Git-Tag: v3.2a1~1560 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79d38ac7060795659b141040a6c6def8113a9531;p=python Remove unused imports & clean up sys imports in test_struct. --- diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py index 39f6daff42..684dc6cd53 100644 --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -1,15 +1,12 @@ import array import unittest import struct -import warnings +import sys -from functools import wraps -from test.support import TestFailed, verbose, run_unittest +from test.support import run_unittest -import sys ISBIGENDIAN = sys.byteorder == "big" IS32BIT = sys.maxsize == 0x7fffffff -del sys def string_reverse(s): return s[::-1] @@ -377,7 +374,6 @@ class StructTest(unittest.TestCase): def test_1229380(self): # SF bug 1229380. No struct.pack exception for some out of # range integers - import sys for endian in ('', '>', '<'): for fmt in ('B', 'H', 'I', 'L'): self.assertRaises((struct.error, OverflowError), struct.pack,