Skip to content

Commit d07f941

Browse files
timfelrchiodo
andauthored
Support GraalPy (#1704)
Co-authored-by: Rich Chiodo false <[email protected]>
1 parent 4d86a42 commit d07f941

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/debugpy/launcher/debuggee.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ def spawn(process_name, cmdline, env, redirect_output):
5858
else:
5959
kwargs = {}
6060

61-
if sys.platform != "win32":
61+
if sys.platform != "win32" and sys.implementation.name != 'graalpy':
62+
# GraalPy does not support running code between fork and exec
6263

6364
def preexec_fn():
6465
try:

0 commit comments

Comments
 (0)