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
removing the option to import math on launch (it is now required) skips adding math to the _exec_globals dict but it should be in there so you can call math directly if you so choose like 'math.sin(3)', note that calling sin(3) works because all the math functions have a wrapper but calling 'math.sin(3)' is broken because math is not found in the _exec_globals any more.
The text was updated successfully, but these errors were encountered:
removing the option to import math on launch (it is now required) skips adding math to the _exec_globals dict but it should be in there so you can call math directly if you so choose like 'math.sin(3)', note that calling sin(3) works because all the math functions have a wrapper but calling 'math.sin(3)' is broken because math is not found in the _exec_globals any more.
The text was updated successfully, but these errors were encountered: