diff options
author | Malcolm Smith <smith@chaquo.com> | 2024-03-11 19:25:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-11 19:25:39 (GMT) |
commit | 872c0714fcdc168ce4a69bdd0346f2d5dd488ec2 (patch) | |
tree | 84934c17e5561cc36d337d83b436fcc5bb40fd88 /Lib/uuid.py | |
parent | 9f983e00ec55b87a098a4c8229fe5bb9acb9f3ac (diff) | |
download | cpython-872c0714fcdc168ce4a69bdd0346f2d5dd488ec2.zip cpython-872c0714fcdc168ce4a69bdd0346f2d5dd488ec2.tar.gz cpython-872c0714fcdc168ce4a69bdd0346f2d5dd488ec2.tar.bz2 |
gh-71052: Change Android's `sys.platform` from "linux" to "android"
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Diffstat (limited to 'Lib/uuid.py')
-rw-r--r-- | Lib/uuid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/uuid.py b/Lib/uuid.py index d4e486d..da2f1d5 100644 --- a/Lib/uuid.py +++ b/Lib/uuid.py @@ -62,7 +62,7 @@ else: import platform _platform_system = platform.system() _AIX = _platform_system == 'AIX' - _LINUX = _platform_system == 'Linux' + _LINUX = _platform_system in ('Linux', 'Android') _MAC_DELIM = b':' _MAC_OMITS_LEADING_ZEROES = False |