The end of pynest/nest/ll_api.py calls an init function whose docstring says it "Initializes NEST". Idiomatically this belongs in __init__.py. Following that idiom can prevent surprising consequences or changes in the sequences of events when ll_api needs to be imported somewhere. It also helps devs trace the sequence of events when import nest occurs.
The end of
pynest/nest/ll_api.py
calls aninit
function whose docstring says it "Initializes NEST". Idiomatically this belongs in__init__.py
. Following that idiom can prevent surprising consequences or changes in the sequences of events whenll_api
needs to be imported somewhere. It also helps devs trace the sequence of events whenimport nest
occurs.