mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Issue #15118: Change return value of os.uname() and os.times() from
plain tuples to immutable iterable objects with named attributes (structseq objects).
This commit is contained in:
parent
f62445ad30
commit
605a62ddb1
10 changed files with 191 additions and 42 deletions
|
@ -440,7 +440,7 @@ try:
|
|||
import sys
|
||||
if sys.platform == 'darwin':
|
||||
import os
|
||||
if int(os.uname()[2].split('.')[0]) >= 9:
|
||||
if int(os.uname().release.split('.')[0]) >= 9:
|
||||
_uuid_generate_random = _uuid_generate_time = None
|
||||
|
||||
# On Windows prior to 2000, UuidCreate gives a UUID containing the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue