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
Core functionality of py2store has been moved to dol -- py2store is set to become an aggregator of dol-libraries for various purposes. Essentially, what it has already become, but not implemented in the best way.
Right now, many modules of py2store (first level ones like trans, util, base...) still exist, but forward to dol. There's probably a cleaner way to do that -- perhaps in the __init__.py.
Would doing an from dol import trans in __init__.py do the same job as doing a from dol.trans import * in the trans.py of py2store, for instance?
Explore and compare options.
The text was updated successfully, but these errors were encountered:
Core functionality of py2store has been moved to dol -- py2store is set to become an aggregator of dol-libraries for various purposes. Essentially, what it has already become, but not implemented in the best way.
Right now, many modules of py2store (first level ones like trans, util, base...) still exist, but forward to dol. There's probably a cleaner way to do that -- perhaps in the
__init__.py
.Would doing an
from dol import trans
in__init__.py
do the same job as doing afrom dol.trans import *
in thetrans.py
of py2store, for instance?Explore and compare options.
The text was updated successfully, but these errors were encountered: