diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-03-20 15:30:25 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-03-20 15:30:25 (GMT) |
commit | bd5b1a613bd5c454f8b39623534fdcebe702949d (patch) | |
tree | 977d9e6d6b530863835f3bf74a548206e008e81d /Lib | |
parent | c0e7a9c72ba327f5486bc367476e0a843c33af2b (diff) | |
parent | e2021f2ecdba6226cd1f57929c7514ec02246bf4 (diff) | |
download | cpython-bd5b1a613bd5c454f8b39623534fdcebe702949d.zip cpython-bd5b1a613bd5c454f8b39623534fdcebe702949d.tar.gz cpython-bd5b1a613bd5c454f8b39623534fdcebe702949d.tar.bz2 |
Issue #12813: uuid.uuid4() no longer depends on ctypes
uuid.uuid4() always uses os.urandom() after 756d040aa8e8.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_uuid.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py index fcb8454..e34d8e6 100644 --- a/Lib/test/test_uuid.py +++ b/Lib/test/test_uuid.py @@ -354,7 +354,6 @@ class TestUUID(unittest.TestCase): equal(u, uuid.UUID(v)) equal(str(u), v) - @unittest.skipUnless(importable('ctypes'), 'requires ctypes') def test_uuid4(self): equal = self.assertEqual |