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

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