Reminder: CFP for the Python Devroom @ FOSDEM 2026 ends Dec 1st

2025-11-25 Thread Marc-Andre Lemburg
Reminder: Call for Participation ends Dec 1st We are happy to announce that we will again be running a*Python devroom at FOSDEM 2026*. The next edition of FOSDEM will take place on January 31 and February 1 2026, with the Python devroom currently scheduled for Saturday, January 31, in the

Re: Proposal: private keyword for import statements to hide module dependencies

2025-11-25 Thread bjotta via Python-list
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):

Re: Proposal: private keyword for import statements to hide module dependencies

2025-11-25 Thread bjotta via Python-list
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

2025-11-25 Thread Thomas Passin
On 11/25/2025 3:42 PM, bjotta via Python-list wrote: 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. ''' im