Regarding the inability to use statement as an input type in blockly_json within Blockly. #17
Unanswered
Lafatalite
asked this question in
Q&A
Replies: 1 comment
-
|
The pyri sandbox runs "restricted Python" which removes most of the functionality of Python in favor of simplicity. This is intended to make it easier for novice programmers and to make the code more verifiable. We have plans for "user modules" that would be a full Python implementation, but that hasn't been developed yet. For now use sandbox function plugins for functionality that is beyond what is available in the restricted Python. https://github.com/pyri-project/pyri-core/blob/master/doc/plugin_development.md#sandbox-plugins https://github.com/pyri-project/pyri-core/blob/master/doc/pyri_dialect_specification.md |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to create a block of the
statementtype, but it's currently not working. It gives the error:unsupported block argument type input_statement used in block global_variable_delete. Use Python generator function instead of sandbox_function_name or sandbox_function_name_selector.I want to create a function block for establishing a socket, and I want to create a statement block so that after the operation is complete, it can automatically close the connection. However, thestatementis not working right now.Beta Was this translation helpful? Give feedback.
All reactions