????

Your IP : 216.73.216.54


Current Path : C:/opt/pgsql/pgAdmin 4/python/Lib/site-packages/keyring/
Upload File :
Current File : C:/opt/pgsql/pgAdmin 4/python/Lib/site-packages/keyring/devpi_client.py

import contextlib
import functools

import pluggy

import keyring.errors


hookimpl = pluggy.HookimplMarker("devpiclient")


# https://github.com/jaraco/jaraco.context/blob/c3a9b739/jaraco/context.py#L205
suppress = type('suppress', (contextlib.suppress, contextlib.ContextDecorator), {})


def restore_signature(func):
    # workaround for pytest-dev/pluggy#358
    @functools.wraps(func)
    def wrapper(url, username):
        return func(url, username)

    return wrapper


@hookimpl()
@restore_signature
@suppress(keyring.errors.KeyringError)
def devpiclient_get_password(url, username):
    """
    >>> pluggy._hooks.varnames(devpiclient_get_password)
    (('url', 'username'), ())
    >>>
    """
    return keyring.get_password(url, username)