Created
November 8, 2016 23:51
-
-
Save ollieglass/bdc6deb9539efda3b8501a00bb7a3c9d to your computer and use it in GitHub Desktop.
Increase open file limit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import platform | |
if platform.system() == 'Windows': | |
import win32file | |
win32file._setmaxstdio(2048) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment