From: Ezio Melotti Date: Tue, 3 Aug 2010 07:18:07 +0000 (+0000) Subject: quiet, not quite. X-Git-Tag: v2.6.6rc1~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dba728b87cc9977b7eff7077f424d22816dd7bb7;p=thirdparty%2FPython%2Fcpython.git quiet, not quite. --- diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py index 0a78022b2644..cfd5d472f028 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), quite=True): + DeprecationWarning), quiet=True): x = struct.pack('L', -1)[:4] self.assertEqual(x, '\xff'*4)