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

Method __init__

couchbase/options.py:914–923  ·  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, GetAllReplicasOptions]
        return_exceptions=None  # type: Optional[bool]
    )

Source from the content-addressed store, hash-verified

912 """ # noqa: E501
913 @overload
914 def __init__(
915 self,
916 timeout=None, # type: Optional[timedelta]
917 parent_span=None, # type: Optional[RequestSpan]
918 transcoder=None, # type: Optional[Transcoder]
919 read_preference=None, # type: Optional[ReadPreference]
920 per_key_options=None, # type: Dict[str, GetAllReplicasOptions]
921 return_exceptions=None # type: Optional[bool]
922 ):
923 pass
924
925 def __init__(self, **kwargs):
926 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