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
On Windows, if you try to pipe binary data from Python into external file, the file will be broken, because all linefeed characters \n will be converted to \n\r.
On Windows, if you try to pipe binary data from Python into external file, the file will be broken, because all linefeed characters
\n
will be converted to\n\r
.test1.py:
The fix is to use Windows API to set stdout and stderr streams to binary:
The text was updated successfully, but these errors were encountered: