We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems bytearray is not supported. How can I fix it myself?
The text was updated successfully, but these errors were encountered:
@jsmith173 RestrictedPython itself offers several sets of builtins to use with, but you can always add additional elements for your specific use-case. Details: https://github.com/zopefoundation/RestrictedPython/blob/master/src/RestrictedPython/Guards.py#L14-L16
Just extend your globals to use it, if you use the safe_builtins from Guards, add it as another element (extend safe_names and add it to the used builtins: see: https://github.com/zopefoundation/RestrictedPython/blob/master/src/RestrictedPython/Guards.py#L111-L112).
safe_builtins
safe_names
Sorry, something went wrong.
No branches or pull requests
It seems bytearray is not supported. How can I fix it myself?
The text was updated successfully, but these errors were encountered: