Skip to content

Commit 434db68

Browse files
authored
gh-104396: uuid.py to skip platform check for emscripten and wasi (gh-104397)
1 parent 7d7dd4c commit 434db68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/uuid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
__author__ = 'Ka-Ping Yee <[email protected]>'
5454

5555
# The recognized platforms - known behaviors
56-
if sys.platform in ('win32', 'darwin'):
56+
if sys.platform in ('win32', 'darwin', 'emscripten', 'wasi'):
5757
_AIX = _LINUX = False
5858
else:
5959
import platform

0 commit comments

Comments
 (0)