Skip to content

Commit

Permalink
gh-104396: uuid.py to skip platform check for emscripten and wasi (gh…
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowone committed May 11, 2023
1 parent 7d7dd4c commit 434db68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
__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
Expand Down

0 comments on commit 434db68

Please sign in to comment.