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
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):
I tried explaining it further down in the thread
--
https://mail.python.org/mailman3//lists/python-list.python.org
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