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

from ptpython.repl import embed


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


if __name__ == "__main__":
    main()