1
0
Fork 0
ptpython/examples/python-embed.py
Daniel Baumann 7159687519
Merging upstream version 3.0.25.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-09 18:31:41 +01:00

12 lines
170 B
Python
Executable file

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