aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/PyHamcrest/py2/hamcrest/library/number/__init__.py
blob: 5087faf84688ca156aeeab188ab2464c0a962dd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
from __future__ import absolute_import
"""Matchers that perform numeric comparisons."""

from .iscloseto import close_to
from .ordering_comparison import greater_than, greater_than_or_equal_to, less_than, less_than_or_equal_to

__author__ = "Jon Reid"
__copyright__ = "Copyright 2011 hamcrest.org"
__license__ = "BSD, see License.txt"