remove test.py

This commit is contained in:
lasershottt 2024-07-19 23:50:43 +02:00
parent 119637db46
commit 15f58f829e
1 changed files with 0 additions and 20 deletions

20
test.py
View File

@ -1,20 +0,0 @@
from multiprocessing import Pool, Manager
import random
import time
def some_function(some_input):
time.sleep(random.random())
return some_input
def test():
global testStr
testStr = 'Hello'
if __name__ == '__main__':
test()
pool = Pool()
manager = Manager()
print(pool.map(some_function, [('Hello') for i in range(4)]))