DEBSOURCES
Skip Quicknav
sources / austin / 3.7.0-8 / test / targets / qualnames.py
123456789101112131415
from time import sleep class Foo: def run(self): sleep(0.5) class Bar: def run(self): sleep(0.3) Foo().run() Bar().run()