mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
gh-90473: disable user site packages on WASI/Emscripten (GH-93633)
This commit is contained in:
parent
e974b3e333
commit
5a4af3ab03
3 changed files with 6 additions and 4 deletions
|
@ -266,8 +266,8 @@ def _getuserbase():
|
|||
if env_base:
|
||||
return env_base
|
||||
|
||||
# VxWorks has no home directories
|
||||
if sys.platform == "vxworks":
|
||||
# Emscripten, VxWorks, and WASI have no home directories
|
||||
if sys.platform in {"emscripten", "vxworks", "wasi"}:
|
||||
return None
|
||||
|
||||
def joinuser(*args):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue