1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# ----------------------------------------------------------------------------
# Copyright (c) 2013--, scikit-bio development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
class SkbioWarning(Warning):
"""Used to filter our warnings from warnings given by 3rd parties"""
pass
class EfficiencyWarning(SkbioWarning):
"""Warn about potentially accidental use of inefficient code.
For example, if a user doesn't have an optimized version of a
function/algorithm available in their scikit-bio installation, a slower,
pure-Python implementation may be used instead. This warning can be used to
let the user know they are using a version of the function that could be
potentially orders of magnitude slower.
"""
pass
class RepresentationWarning(SkbioWarning):
"""Warn about assumptions made for the successful completion of a process.
Warn about substitutions, assumptions, or particular alterations that were
made for the successful completion of a process. For example, if a value
that is required for a task is not present, a best guess or least
deleterious value could be used, accompanied by this warning.
"""
pass
class DeprecationWarning(DeprecationWarning, SkbioWarning):
"""Used to indicate deprecated functionality in scikit-bio."""
pass
|