cleanup names for dirs

This commit is contained in:
bt3gl 2022-03-23 18:32:49 +04:00
parent 0904ec1dc4
commit 0da3cbd74a
80 changed files with 62 additions and 2263 deletions

View file

@ -1,27 +0,0 @@
#!/usr/bin/env python3
import threading
x = 0
COUNT = 10000000
def foo():
global x
for i in range(COUNT):
x += 1
def bar():
global x
for i in range(COUNT):
x -= 1
t1 = threading.Thread(target=foo)
t2 = threading.Thread(target=bar)
t1.start()
t2.start()
t1.join()
t2.join()
print(x)