diff options
author | Christian Heimes <christian@python.org> | 2022-01-16 21:52:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-16 21:52:43 (GMT) |
commit | 91e33ac3d08a1c6004c469da2c0e2a97b5bdc53c (patch) | |
tree | 93e1ad6d692a706bd319b6c705642487499f4965 /Lib/test/test_uuid.py | |
parent | 5cd9a162cd02a3d0f1b0a182d80feeb17439e84f (diff) | |
download | cpython-91e33ac3d08a1c6004c469da2c0e2a97b5bdc53c.zip cpython-91e33ac3d08a1c6004c469da2c0e2a97b5bdc53c.tar.gz cpython-91e33ac3d08a1c6004c469da2c0e2a97b5bdc53c.tar.bz2 |
bpo-40280: Add requires_fork test helper (GH-30622)
Diffstat (limited to 'Lib/test/test_uuid.py')
-rwxr-xr-x | Lib/test/test_uuid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py index 3f56192..411eec0 100755 --- a/Lib/test/test_uuid.py +++ b/Lib/test/test_uuid.py @@ -647,7 +647,7 @@ class BaseTestUUID: equal(u, self.uuid.UUID(v)) equal(str(u), v) - @unittest.skipUnless(hasattr(os, 'fork'), 'need os.fork') + @support.requires_fork() def testIssue8621(self): # On at least some versions of OSX self.uuid.uuid4 generates # the same sequence of UUIDs in the parent and any |