Re: Proposal: private keyword for import statements to hide module dependencies
I tried explaining it further down in the thread -- https://mail.python.org/mailman3//lists/python-list.python.org
Re: Proposal: private keyword for import statements to hide module dependencies
It seem like you are talking about classes and sub-classes. I was talking about dependencies in projects. e..g I create a library that has some dependencies (numpy here) Inside the library there is a file importing numpy for example. ''' import numpy as np def stock_earnings(winnings, losses):
