summaryrefslogtreecommitdiff
path: root/functional_tests/test_multiprocessing/support/concurrent_shared/test.py
blob: 5bc21f640a57cf266562e42fc87350058edef063 (plain)
1
2
3
4
5
6
7
8
9
10
11
#from . import counter
from time import sleep
#_multiprocess_can_split_ = True
class Test1(object):
    def test1(self):
        sleep(1)
        pass
class Test2(object):
    def test2(self):
        sleep(1)
        pass