For importing all symbols from the module in Python, we use: 
    
    
    from foobar import *
    

Person who reads the code however has a hard time when he needs to figure out 
which module certain symbol comes from. This is why it is commonly known as a 
bad practice.

In nim sources, we can typically see: 
    
    
    import foobar
    

which also imports all the symbols. Don't you consider it as a harm for 
readability of the code? 

Reply via email to