Closed
Description
current state
cargo run -- -c 'from ...a import e'
Traceback (most recent call last):
SyntaxError: Got unexpected token: Ellipsis at Location { row: 1, column: 6 } at line 0
should be
python -c 'from ...a import e'
Traceback (most recent call last):
File "<string>", line 1, in <module>
ValueError: Attempted relative import in non-package