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
inplace operators should NOT apply to immutable (tuple) if t = (1,) then t+=(2,) should not be allowed and written t = t + (2,) instead
t = (1,)
t+=(2,)
t = t + (2,)
other inplace operations should use that scheme: t = type(t)( iop( t , V ) ) but ideally V should be casted to type t before iop.
not doing so probably prevent easy/efficient compilation of python code to C or wasm and add overhead to FFI stacks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
inplace operators should NOT apply to immutable (tuple)
if
t = (1,)
then
t+=(2,)
should not be allowed and written
t = t + (2,)
insteadother inplace operations should use that scheme:
t = type(t)( iop( t , V ) )
but ideally V should be casted to type t before iop.
not doing so probably prevent easy/efficient compilation of python code to C or wasm and add overhead to FFI stacks.
The text was updated successfully, but these errors were encountered: