You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and so FBLS_cy, BLS_cext,fold, etc. are part of the global module namespace.
import fold
Would it be better to put everything into the FFA for better namespace, and import them e.g. as:
import FFA.fold # No risk of confusion with the 'fold' package which is in pypi
# or
import FFA.FFA_cext as FFA # Easy way to switch between implementations without changing later code
I believe you can do that as:
Extension(name="FFA.FBLS_cy",
but I haven't tried it.
The text was updated successfully, but these errors were encountered:
Currently the setup.py has things like:
and so
FBLS_cy
,BLS_cext
,fold
, etc. are part of the global module namespace.Would it be better to put everything into the FFA for better namespace, and import them e.g. as:
I believe you can do that as:
but I haven't tried it.
The text was updated successfully, but these errors were encountered: