9 lines
156 B
Python
9 lines
156 B
Python
"""
|
|
Make `python -m ptpython` an alias for running `./ptpython`.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .entry_points.run_ptpython import run
|
|
|
|
run()
|