File: decorators.py

package info (click to toggle)
astroml 1.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 932 kB
  • sloc: python: 5,731; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
import warnings

from astroML.utils.exceptions import AstroMLDeprecationWarning
from astroML.utils.decorators import pickle_results  # noqa: F401


warnings.warn("'decorators' has been moved to 'astroML.utils' and will be "
              "removed from the main namespace in the future.",
              AstroMLDeprecationWarning)