commit | 192f6782c6aa1cb1979aa6c494e01268f5aabab1 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Tue Aug 03 06:39:49 2010 +0000 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Tue Aug 03 06:39:49 2010 +0000 |
tree | 889ce56c7e672c2f4cd60439b9f8bb013c4e3201 | |
parent | ee1e2c90ddec926208d140ae73eda8f97ae0305a [diff] [blame] |
Try to fix test_struct.py on some buildbots.
diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py index c0b5e7c..0a78022 100644 --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py
@@ -493,7 +493,7 @@ 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)