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
Commit dc50d41 introduced a deprecation life-cycle to CristalX.
Managing deprecated functionalities, and the fact in which release it was marked as deprecated and in which future release it is planned to be removed, becomes cumbersome as CristalX grows.
Therefore, create a function in the grain package (in __init__.py) to fetch these data. I found 3 main possibilities:
Create an additional decorator to decorate the decorator you want to track
"Method 3" in https://stackoverflow.com/a/5910893/4892892. In my case, I would need to decorate the deprecated decorator from the deprecation package.
Commit dc50d41 introduced a deprecation life-cycle to CristalX.
Managing deprecated functionalities, and the fact in which release it was marked as deprecated and in which future release it is planned to be removed, becomes cumbersome as CristalX grows.
Therefore, create a function in the grain package (in
__init__.py
) to fetch these data. I found 3 main possibilities:inspect
built-in Python module"Method 2" in https://stackoverflow.com/a/5910893/4892892
"Method 3" in https://stackoverflow.com/a/5910893/4892892. In my case, I would need to decorate the
deprecated
decorator from the deprecation package.Provided by https://stackoverflow.com/a/9580006/4892892, this is also a source parsing method, as the first item.
The text was updated successfully, but these errors were encountered: