Skip to content
Snippets Groups Projects
Commit a1aba36f authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

compile: Add comments ergarding non-implemented relative imports.

parent 4d79d5dd
No related branches found
No related tags found
No related merge requests found
......@@ -1187,10 +1187,12 @@ void do_import_name(compiler_t *comp, mp_parse_node_t pn, qstr *q1, qstr *q2) {
}
} else {
// TODO not implemented
// This covers relative imports starting with dot(s) like "from .foo import"
assert(0);
}
} else {
// TODO not implemented
// This covers relative imports with dots only like "from .. import"
assert(0);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment