Hallo nochmal.
Wenn ich bar/init.py ändere auf:
from . import * from . import *
kommt allerdings: AttributeError: 'module' object has no attribute 'how_cool'. Diesmal in Python 3 und 2.
Und wenn ich mich dann ein kleines bißchen weniger dämlich anstelle und folgendes in bar/init.py notiere:
from .baz import *
from .boo import *
dann funktioniert auch alles so, wie ich das wollte. :-D Danke für den Denkanstoß, mehr hat's anscheinend nicht gebraucht. Läuft.
Grüße, Max