summaryrefslogtreecommitdiffstats
path: root/examples/python-embed.py
blob: ac2cd06f2438fddf452a85e869dd6fcdb5923a0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
"""
"""
from ptpython.repl import embed


def main():
    embed(globals(), locals(), vi_mode=False)


if __name__ == "__main__":
    main()