"""Fundamental matchers of objects and values, and composite matchers.""" from allof import all_of from anyof import any_of from described_as import described_as from is_ import is_ from isanything import anything from isequal import equal_to from isinstanceof import instance_of from isnone import none, not_none from isnot import is_not from issame import same_instance __author__ = "Jon Reid" __copyright__ = "Copyright 2011 hamcrest.org" __license__ = "BSD, see License.txt"