import tempfileimport osfor idx in xrange(1024 + 1): outfd, outsock_path = tempfile.mkstemp() outsock = os.fdopen(outfd,'w') outsock.close()
欢迎分享,转载请注明来源:内存溢出
import tempfileimport osfor idx in xrange(1024 + 1): outfd, outsock_path = tempfile.mkstemp() outsock = os.fdopen(outfd,'w') outsock.close()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)