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
Hardcoding [PYTHON_BRIDGE_SCRIPT] here prevents users from passing any arguments to the interpreter.
My use case
I want to pass -u to python3 in order to flush stdout after every print.
This way I don't have to manually flush the stdout after (via sys.stdout.flush()) or within (via print(message, flush=True) every print.
node-python-bridge/index.js
Line 22 in 9b13b40
Issue
Hardcoding
[PYTHON_BRIDGE_SCRIPT]
here prevents users from passing any arguments to the interpreter.My use case
I want to pass
-u
topython3
in order to flush stdout after everyprint
.This way I don't have to manually flush the stdout after (via
sys.stdout.flush()
) or within (viaprint(message, flush=True
) every print.Related Issues
#35
The text was updated successfully, but these errors were encountered: