diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-25 00:12:32 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-25 00:12:32 +0300 |
commit | ccd047ea4b92f09a84b67e69deb82ce42e510c4c (patch) | |
tree | 89663a3917f136919b9b491c22ee76c16afd0b83 /Lib/uuid.py | |
parent | a6f26c1d3495670c02c2ceb1e38ada0d468579f7 (diff) | |
download | cpython-git-ccd047ea4b92f09a84b67e69deb82ce42e510c4c.tar.gz |
Removed unused imports.
Diffstat (limited to 'Lib/uuid.py')
-rw-r--r-- | Lib/uuid.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/uuid.py b/Lib/uuid.py index e96e7e034c..200c800b34 100644 --- a/Lib/uuid.py +++ b/Lib/uuid.py @@ -487,7 +487,6 @@ try: # Assume that the uuid_generate functions are broken from 10.5 onward, # the test can be adjusted when a later version is fixed. if sys.platform == 'darwin': - import os if int(os.uname().release.split('.')[0]) >= 9: _uuid_generate_time = None |