summaryrefslogtreecommitdiff
path: root/subdir/foo.py
blob: 194d3af9f532bdfc88937138a739edcef7a2985a (plain)
1
2
3
4
5
6
7
8
9
10
11
class Foo:

    def foo(self, a):
        if a:
            return True
        else:
            import time
            time.sleep(12)
            return False