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
Currently, because we don't pass the stderr function into pyodide initialisation, anything written to stderr that is not a traceback from an error just follows the default functionality, and gets sent to console.warn.
Preferably, anything written to sys.stderr in python should instead populate the stderr state from usePython.
MWE:
Paste the following code into the example from the react-py website:
importsysprint('test', file=sys.stderr)
The text was updated successfully, but these errors were encountered:
Currently, because we don't pass the
stderr
function intopyodide
initialisation, anything written to stderr that is not a traceback from an error just follows the default functionality, and gets sent toconsole.warn
.Preferably, anything written to
sys.stderr
in python should instead populate thestderr
state fromusePython
.MWE:
Paste the following code into the example from the react-py website:
The text was updated successfully, but these errors were encountered: