fixed: correct usage of generator function

This commit is contained in:
Albert S. 2018-08-09 22:59:32 +02:00
부모 4de5aa6d74
커밋 07b3479029
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -163,7 +163,7 @@ if __name__ == '__main__':
with Pool(processes=4,initializer=init) as pool:
if len(sys.argv) < 2:
pool.map(insert, yieldstdinfiles)
pool.map(insert, (l for l in yieldstdinfiles()))
else:
pool.map(insert, sys.argv[1:])