1
0
Fork 0
ptpython/examples/python-embed.py
Daniel Baumann 7807e8a7bd
Merging upstream version 3.0.27.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-09 18:34:28 +01:00

12 lines
171 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()