@jester I said two **modules** with the same name, not just two modules that 
provide two things with the same name.  More like:
    
    
    import graphics.settings
    import sounds.settings
    
    sth_they_share()           # error: which one?
    settings.sth_they_share()  # error: which one?
    

Reply via email to