We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
python -c 'from ...a import e'
Traceback (most recent call last): File "<string>", line 1, in <module> ValueError: Attempted relative import in non-package
The text was updated successfully, but these errors were encountered:
ff762d7
Merge pull request #1152 from RustPython/import-syntax
42b1b75
Address relative import with 3 dots. Closes #1052.
No branches or pull requests
current state
cargo run -- -c 'from ...a import e'
should be
python -c 'from ...a import e'
The text was updated successfully, but these errors were encountered: