mirror of https://github.com/python/cpython.git
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 @@
|
||||||
__author__ = 'Ka-Ping Yee <ping@zesty.ca>'
|
__author__ = 'Ka-Ping Yee <ping@zesty.ca>'
|
||||||
|
|
||||||
# The recognized platforms - known behaviors
|
# The recognized platforms - known behaviors
|
||||||
if sys.platform in ('win32', 'darwin'):
|
if sys.platform in ('win32', 'darwin', 'emscripten', 'wasi'):
|
||||||
_AIX = _LINUX = False
|
_AIX = _LINUX = False
|
||||||
else:
|
else:
|
||||||
import platform
|
import platform
|
||||||
|
|
Loading…
Reference in New Issue