mirror of https://github.com/python/cpython
gh-104396: uuid.py to skip platform check for emscripten and wasi (gh-104397)
This commit is contained in:
parent
7d7dd4cd70
commit
434db68ee3
|
@ -53,7 +53,7 @@ from enum import Enum, _simple_enum
|
|||
__author__ = 'Ka-Ping Yee <ping@zesty.ca>'
|
||||
|
||||
# The recognized platforms - known behaviors
|
||||
if sys.platform in ('win32', 'darwin'):
|
||||
if sys.platform in ('win32', 'darwin', 'emscripten', 'wasi'):
|
||||
_AIX = _LINUX = False
|
||||
else:
|
||||
import platform
|
||||
|
|
Loading…
Reference in New Issue