bpo-29925: Skip test_uuid1_safe() on OS X Tiger (#971) · python/cpython@c209b70 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit c209b70
File tree
1 file changed
lines changed
1 file changed
lines changed
Lines changed: 3 additions & 0 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -344,6 +344,9 @@ def test_uuid1(self): | ||
344 | 344 | 'requires uuid_generate_time_safe(3)') |
345 | 345 | |
346 | 346 | @requires_ugt |
347 | +# bpo-29925: On Mac OS X Tiger, uuid.uuid1().is_safe returns | |
348 | +# uuid.SafeUUID.unknown | |
349 | +@support.requires_mac_ver(10, 5) | |
347 | 350 | def test_uuid1_safe(self): |
348 | 351 | u = uuid.uuid1() |
349 | 352 | # uuid_generate_time_safe() may return 0 or -1 but what it returns is |