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
When you 'print' in the interpeter you write into a buffered stdout model in sys.stdout. When you print in compiled code we write directly to the operating system. If you mix compiled and interpreted code your print statements can get out of order, which is hard to make sense of.
Not clear how to solve this, since we don't want compiled print to have to lock the GIL to interact with sys.stdout...
The text was updated successfully, but these errors were encountered:
When you 'print' in the interpeter you write into a buffered stdout model in sys.stdout. When you print in compiled code we write directly to the operating system. If you mix compiled and interpreted code your print statements can get out of order, which is hard to make sense of.
Not clear how to solve this, since we don't want compiled print to have to lock the GIL to interact with sys.stdout...
The text was updated successfully, but these errors were encountered: