File: decorators.py

package info (click to toggle)
astroml 0.4.post1-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 892 kB
  • sloc: python: 5,492; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 315 bytes parent folder | download
1
2
3
4
5
6
7
8
9
import warnings

from astroML.utils.exceptions import AstroMLDeprecationWarning
from astroML.utils.decorators import pickle_results


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