diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-08-03 07:18:07 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-08-03 07:18:07 (GMT) |
commit | dba728b87cc9977b7eff7077f424d22816dd7bb7 (patch) | |
tree | 591fd5c53b1a95bd1c5fe3775f5554e5185f93bd /Lib/test | |
parent | dfe2107481a50de707af046a34288b80182b013f (diff) | |
download | cpython-dba728b87cc9977b7eff7077f424d22816dd7bb7.zip cpython-dba728b87cc9977b7eff7077f424d22816dd7bb7.tar.gz cpython-dba728b87cc9977b7eff7077f424d22816dd7bb7.tar.bz2 |
quiet, not quite.
Diffstat (limited to 'Lib/test')
-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 0a78022..cfd5d47 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) |