From 07c65884c635f1d4ea8f5fa8598d4dd091804aba Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 21 Feb 2012 19:14:26 +0100 Subject: Add a test that memoryviews have hash randomization enabled. --- Lib/test/test_hash.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Lib/test/test_hash.py b/Lib/test/test_hash.py index 385efed..3de3e8d 100644 --- a/Lib/test/test_hash.py +++ b/Lib/test/test_hash.py @@ -186,6 +186,12 @@ class BytesHashRandomizationTests(StringlikeHashRandomizationTests): def test_empty_string(self): self.assertEqual(hash(b""), 0) +class MemoryviewHashRandomizationTests(StringlikeHashRandomizationTests): + repr_ = "memoryview(b'abc')" + + def test_empty_string(self): + self.assertEqual(hash(memoryview(b"")), 0) + class DatetimeTests(HashRandomizationTests): def get_hash_command(self, repr_): return 'import datetime; print(hash(%s))' % repr_ -- cgit v0.12