This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/python/yap_kernel/yap_kernel/__main__.py
2017-08-21 12:36:48 +01:00

17 lines
379 B
Python

import sys
import trace
# create a Trace object, telling it what to ignore, and whether to
# do tracing or line-counting or both.
tracer = trace.Trace(
# ignoredirs=[sys.prefix, sys.exec_prefix],
trace=1,
count=0)
if __name__ == '__main__':
from yap_kernel import kernelapp as app
# tracer.run('app.launch_new_instance()')
app.launch_new_instance()