1
0
Fork 0
ptpython/examples/python-embed.py
Daniel Baumann 0014608abc
Adding upstream version 3.0.16.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-09 18:23:09 +01:00

12 lines
162 B
Python
Executable file

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