Skip to content

Instantly share code, notes, and snippets.

@ollieglass
Created November 8, 2016 23:51
Embed
What would you like to do?
Increase open file limit
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