I’m surprised about the module lookup thing, since I assumed it was just syntax sugar to do from ... import .... We do the from syntax almost everywhere, but I’ve been replacing huge import blocks with a module import (e.g. constants) just to clean up the imports a bit and git conflicts.
Looks like I’ll need to keep this in mind until we upgrade to 3.13.
I’m surprised about the module lookup thing, since I assumed it was just syntax sugar to do
from ... import ...
. We do thefrom
syntax almost everywhere, but I’ve been replacing huge import blocks with a module import (e.g. constants) just to clean up the imports a bit and git conflicts.Looks like I’ll need to keep this in mind until we upgrade to 3.13.