compile: Add comments ergarding non-implemented relative imports.

pull/313/head
Paul Sokolovsky 2014-02-20 13:21:31 +02:00
rodzic 4d79d5dd7c
commit a1aba36feb
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -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);
}
}