diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-08-03 06:39:49 +0000 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-08-03 06:39:49 +0000 |
commit | 192f6782c6aa1cb1979aa6c494e01268f5aabab1 (patch) | |
tree | 889ce56c7e672c2f4cd60439b9f8bb013c4e3201 /Lib/test/test_struct.py | |
parent | ee1e2c90ddec926208d140ae73eda8f97ae0305a (diff) | |
download | cpython-git-192f6782c6aa1cb1979aa6c494e01268f5aabab1.tar.gz |
Try to fix test_struct.py on some buildbots.
Diffstat (limited to 'Lib/test/test_struct.py')
-rw-r--r-- | Lib/test/test_struct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py index c0b5e7c69c..0a78022b26 100644 --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -493,7 +493,7 @@ class StructTest(unittest.TestCase): def test_issue4228(self): # Packing a long may yield either 32 or 64 bits with _check_py3k_warnings(("struct integer overflow masking is deprecated", - DeprecationWarning)): + DeprecationWarning), quite=True): x = struct.pack('L', -1)[:4] self.assertEqual(x, '\xff'*4) |