1
0
Fork 0
ptpython/examples/python-embed.py

13 lines
162 B
Python
Raw Permalink Normal View History

#!/usr/bin/env python
"""
"""
from ptpython.repl import embed
def main():
embed(globals(), locals(), vi_mode=False)
if __name__ == "__main__":
main()