MCPcopy Index your code
hub / github.com/couchbase/couchbase-python-client / __init__

Method __init__

couchbase/options.py:954–963  ·  view source on GitHub ↗
(
        self,
        timeout=None,           # type: Optional[timedelta]
        parent_span=None,              # type: Optional[RequestSpan]
        transcoder=None,        # type: Optional[Transcoder]
        read_preference=None,   # type: Optional[ReadPreference]
        per_key_options=None,   # type: Dict[str, GetAnyReplicaOptions]
        return_exceptions=None  # type: Optional[bool]
    )

Source from the content-addressed store, hash-verified

952 """ # noqa: E501
953 @overload
954 def __init__(
955 self,
956 timeout=None, # type: Optional[timedelta]
957 parent_span=None, # type: Optional[RequestSpan]
958 transcoder=None, # type: Optional[Transcoder]
959 read_preference=None, # type: Optional[ReadPreference]
960 per_key_options=None, # type: Dict[str, GetAnyReplicaOptions]
961 return_exceptions=None # type: Optional[bool]
962 ):
963 pass
964
965 def __init__(self, **kwargs):
966 kwargs = {k: v for k, v in kwargs.items() if v is not None}

Callers

nothing calls this directly

Calls 2

itemsMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected