You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: guests/python/README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -197,6 +197,9 @@ def compute(x: int) -> int:
197
197
## I/O
198
198
All I/O operations go through the host, there is no direct interaction with the host operating system.
199
199
200
+
### Environment Variables
201
+
Hosts can pass environment variables to the guest if they want. By default, NO variables are available for the guest though (i.e. there is NO implicit pass-through). The standard Python library can read these environment variables, e.g. via [`os.environ`].
202
+
200
203
### Filesystem
201
204
The [Python Standard Library] is mounted as a read-only filesystem. The host file system (incl. special paths like `/proc`) are NOT exposed to the guest.
202
205
@@ -234,6 +237,7 @@ There is NO other I/O available that escapes the sandbox.
0 commit comments