<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import io
import os
import sys
from typing import Tuple

from sqlalchemy.util import inspect_getfullargspec  # noqa
from sqlalchemy.util.compat import inspect_formatargspec  # noqa

is_posix = os.name == "posix"

py39 = sys.version_info &gt;= (3, 9)
py38 = sys.version_info &gt;= (3, 8)
py37 = sys.version_info &gt;= (3, 7)


# produce a wrapper that allows encoded text to stream
# into a given buffer, but doesn't close it.
# not sure of a more idiomatic approach to this.
class EncodedIO(io.TextIOWrapper):
    def close(self) -&gt; None:
        pass


if py39:
    from importlib import resources as importlib_resources
    from importlib import metadata as importlib_metadata
    from importlib.metadata import EntryPoint
else:
    import importlib_resources  # type:ignore[no-redef] # noqa
    import importlib_metadata  # type:ignore[no-redef] # noqa
    from importlib_metadata import EntryPoint  # type:ignore # noqa


def importlib_metadata_get(group: str) -&gt; Tuple[EntryPoint, ...]:
    ep = importlib_metadata.entry_points()
    if hasattr(ep, "select"):
        return ep.select(group=group)  # type:ignore[attr-defined]
    else:
        return ep.get(group, ())


def formatannotation_fwdref(annotation, base_module=None):
    """the python 3.7 _formatannotation with an extra repr() for 3rd party
    modules"""

    if getattr(annotation, "__module__", None) == "typing":
        return repr(annotation).replace("typing.", "")
    if isinstance(annotation, type):
        if annotation.__module__ in ("builtins", base_module):
            return annotation.__qualname__
        return repr(annotation.__module__ + "." + annotation.__qualname__)
    return repr(annotation)
</pre></body></html>