summaryrefslogtreecommitdiffstats
path: root/ptpython/__main__.py
blob: c0062613a13e09237ad1d7a6230e1839928f8d85 (plain)
1
2
3
4
5
6
7
8
"""
Make `python -m ptpython` an alias for running `./ptpython`.
"""
from __future__ import annotations

from .entry_points.run_ptpython import run

run()