5d895c2005
With these changes, the import function will become a lot smarter, and will combine all of import, import-from and import-as in a hyly lispy syntax: (import sys os whatever_else) (import [sys [exit argv]] [os :as real_os] [whatever_else [some_function :as sf]]) That is, each argument of import can be: - A plain symbol, which will be imported - A list, which will be handled specially If the argument is a list, the first element will always be the module name to import, the second member can be either of these: - A list of symbols to import - The ':as' keyword - Nothing If it is the ':as' keyword, the third argument must be an alias. If it is a list of symbols to import, we'll iterate through that list too. If any symbol is followed by an ':as' keyword, we'll pick all three, and treat the third member as an alias. If there is nothing else in the list, we'll import the module as-is. All this combined fixes #113. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org> |
||
---|---|---|
.. | ||
compilers | ||
importer | ||
lex | ||
macros | ||
native_tests | ||
resources | ||
__init__.py |