aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/PyHamcrest/src/hamcrest/library/number/__init__.py
blob: 9dcac1399336c98434fffd92ebab31ac804ecf55 (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"