| Server IP : 104.26.0.14 / Your IP : 104.23.197.140 Web Server : nginx/1.30.3 System : Linux vps-a1214830 7.0.0-27-generic #27-Ubuntu SMP PREEMPT_DYNAMIC Thu Jun 18 19:13:49 UTC 2026 x86_64 User : bangkokfinder ( 1002) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/hamcrest/core/ |
Upload File : |
from hamcrest.core.description import Description
__author__ = "Jon Reid"
__copyright__ = "Copyright 2011 hamcrest.org"
__license__ = "BSD, see License.txt"
class SelfDescribing:
"""The ability of an object to describe itself."""
def describe_to(self, description: Description) -> None:
"""Generates a description of the object.
The description may be part of a description of a larger object of
which this is just a component, so it should be worded appropriately.
:param description: The description to be built or appended to.
"""
raise NotImplementedError("describe_to")