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
It's not currently possible to set the renode configuration except via environmental variables. This is pretty inconvenient, since we can't do any configuration from python. This could be used to set sensible defaults or use configuration from command line arguments or configuration files. I'd like to be able to do something like
but importing pyrenode3.env implicitly imports pyrenode itself, which in turn automatically imports pyrenode3.env. So by the time we can modify the environment, the module is already interpreted. An even better way would be something like
It's not currently possible to set the renode configuration except via environmental variables. This is pretty inconvenient, since we can't do any configuration from python. This could be used to set sensible defaults or use configuration from command line arguments or configuration files. I'd like to be able to do something like
but importing
pyrenode3.env
implicitly importspyrenode
itself, which in turn automatically importspyrenode3.env
. So by the time we can modify the environment, the module is already interpreted. An even better way would be something likeOf course, you can always do something like
but I'm not a big fan of doing configuration via environmental variables in the first place...
The text was updated successfully, but these errors were encountered: