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
Although accepted in Python101 (according to the reference sheet), the symmetric difference (^) currently raises a warning in normal mode.
For instance, the MWE below:
raises the following error: ==> Non-Python101: cette construction n'est pas disponible en Python101 (vous pouvez essayer le mode expert pour faire du Python standard) BinOp(left=Name(id='e1', ctx=Load()), op=BitXor(), right=Name(id='e2', ctx=Load()))
The text was updated successfully, but these errors were encountered:
Although accepted in Python101 (according to the reference sheet), the symmetric difference (^) currently raises a warning in normal mode.
For instance, the MWE below:
raises the following error:
==> Non-Python101: cette construction n'est pas disponible en Python101 (vous pouvez essayer le mode expert pour faire du Python standard)
BinOp(left=Name(id='e1', ctx=Load()), op=BitXor(), right=Name(id='e2', ctx=Load()))
The text was updated successfully, but these errors were encountered: