We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8333719 + f128750 commit 698134cCopy full SHA for 698134c
Lib/uuid.py
@@ -55,6 +55,8 @@
55
# The recognized platforms - known behaviors
56
if sys.platform in ('win32', 'darwin'):
57
_AIX = _LINUX = False
58
+elif sys.platform in ('emscripten', 'wasi'): # XXX: RUSTPYTHON; patched to support those platforms
59
+ _AIX = _LINUX = False
60
else:
61
import platform
62
_platform_system = platform.system()
0 commit comments