Changes for a python code interpreter #12
Reference in New Issue
Block a user
No description provided.
Delete Branch "feat/python-code-interpreter"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Added env expansion, sandbox env fetching and configurable healthcheck
Created a basic recipefile and healthcheck for a minimal python interpreter with jupyter
@ -59,0 +123,4 @@// environment variable name (alphanumeric or underscore)func isNameChar(c byte) bool {return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||(c >= '0' && c <= '9') || c == '_'Use regex here
expandEnvto use regex. 9852f96127- Fix envRegex: remove spurious (\$)? group that swallowed $$$, handle ${} - wrenn-init.sh: add || true to networking commands under set -e, remove dead code - waitForHealthcheck: use context deadline for unlimited retries instead of implicit 100 cap - Make parseSandboxEnv a package-level function (unused receiver) - Fix WrappedCommand test: map iteration order dependency, pre-expand env values - Fix error wrapping: %v → %w per project conventions - test-jupyter-kernel.py: move import to top-level, fix misleading commentWIP: Added necessary changes for a python code interpreterto Changes for a python code interpreter