blob: b4357921598916e3b66f42fdacb0b0eaaeb68374 (
plain)
1
2
3
4
5
6
7
|
"""Allow Pyth to work without exposing its top-level module
names to the global module namespace."""
import python_qualify
python_qualify.enable_submodules(__name__)
"""Original script follows below."""
|