ommlds 0.0.0.dev499__py3-none-any.whl → 0.0.0.dev503__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ommlds/.omlish-manifests.json +20 -9
- ommlds/__about__.py +1 -1
- ommlds/backends/anthropic/protocol/sse/events.py +2 -0
- ommlds/backends/groq/clients.py +9 -0
- ommlds/cli/_dataclasses.py +22 -72
- ommlds/cli/backends/inject.py +20 -0
- ommlds/cli/backends/meta.py +47 -0
- ommlds/cli/sessions/chat/drivers/ai/tools.py +3 -7
- ommlds/cli/sessions/chat/facades/commands/base.py +1 -1
- ommlds/cli/sessions/chat/interfaces/textual/app.py +1 -1
- ommlds/minichain/__init__.py +47 -6
- ommlds/minichain/_dataclasses.py +533 -132
- ommlds/minichain/backends/impls/anthropic/names.py +3 -3
- ommlds/minichain/backends/impls/anthropic/stream.py +1 -1
- ommlds/minichain/backends/impls/cerebras/names.py +15 -0
- ommlds/minichain/backends/impls/cerebras/stream.py +1 -1
- ommlds/minichain/backends/impls/google/names.py +6 -0
- ommlds/minichain/backends/impls/google/stream.py +1 -1
- ommlds/minichain/backends/impls/groq/chat.py +2 -0
- ommlds/minichain/backends/impls/groq/stream.py +3 -1
- ommlds/minichain/backends/impls/ollama/chat.py +1 -1
- ommlds/minichain/backends/impls/openai/format.py +2 -1
- ommlds/minichain/backends/impls/openai/stream.py +33 -1
- ommlds/minichain/chat/messages.py +1 -1
- ommlds/minichain/chat/stream/joining.py +36 -12
- ommlds/minichain/chat/transforms/metadata.py +3 -3
- ommlds/minichain/content/standard.py +1 -1
- ommlds/minichain/content/transform/json.py +1 -1
- ommlds/minichain/content/transform/metadata.py +1 -1
- ommlds/minichain/content/transform/standard.py +2 -2
- ommlds/minichain/content/transform/strings.py +1 -1
- ommlds/minichain/content/transform/templates.py +1 -1
- ommlds/minichain/metadata.py +13 -16
- ommlds/minichain/resources.py +22 -1
- ommlds/minichain/services/README.md +154 -0
- ommlds/minichain/services/__init__.py +6 -2
- ommlds/minichain/services/_marshal.py +46 -10
- ommlds/minichain/services/_origclasses.py +11 -0
- ommlds/minichain/services/_typedvalues.py +8 -3
- ommlds/minichain/services/requests.py +73 -3
- ommlds/minichain/services/responses.py +73 -3
- ommlds/minichain/services/services.py +9 -0
- ommlds/minichain/stream/services.py +24 -1
- ommlds/minichain/tools/reflect.py +3 -3
- ommlds/minichain/wrappers/firstinwins.py +29 -2
- ommlds/minichain/wrappers/instrument.py +146 -0
- ommlds/minichain/wrappers/retry.py +93 -3
- ommlds/minichain/wrappers/services.py +26 -0
- {ommlds-0.0.0.dev499.dist-info → ommlds-0.0.0.dev503.dist-info}/METADATA +6 -6
- {ommlds-0.0.0.dev499.dist-info → ommlds-0.0.0.dev503.dist-info}/RECORD +54 -52
- ommlds/minichain/stream/wrap.py +0 -62
- {ommlds-0.0.0.dev499.dist-info → ommlds-0.0.0.dev503.dist-info}/WHEEL +0 -0
- {ommlds-0.0.0.dev499.dist-info → ommlds-0.0.0.dev503.dist-info}/entry_points.txt +0 -0
- {ommlds-0.0.0.dev499.dist-info → ommlds-0.0.0.dev503.dist-info}/licenses/LICENSE +0 -0
- {ommlds-0.0.0.dev499.dist-info → ommlds-0.0.0.dev503.dist-info}/top_level.txt +0 -0
ommlds/minichain/_dataclasses.py
CHANGED
|
@@ -519,14 +519,14 @@ def _process_dataclass__65a4fe67fac0748cfb55c6f5820bf0837c939b9d():
|
|
|
519
519
|
('ommlds.minichain.backends.impls.transformers.transformers', 'TransformersPipelineKwargs'),
|
|
520
520
|
('ommlds.minichain.chat.templating', 'MessageTemplate'),
|
|
521
521
|
('ommlds.minichain.chat.transforms.metadata', 'TransformedMessageOrigin'),
|
|
522
|
+
('ommlds.minichain.completion', 'CreatedAt'),
|
|
522
523
|
('ommlds.minichain.completion', 'FinishReasonOutput'),
|
|
523
524
|
('ommlds.minichain.completion', 'MaxCompletionTokens'),
|
|
524
525
|
('ommlds.minichain.completion', 'MaxTokens'),
|
|
525
526
|
('ommlds.minichain.completion', 'Temperature'),
|
|
526
527
|
('ommlds.minichain.completion', 'TokenUsageOutput'),
|
|
527
528
|
('ommlds.minichain.completion', 'TopK'),
|
|
528
|
-
('ommlds.minichain.
|
|
529
|
-
('ommlds.minichain.metadata', 'Uuid'),
|
|
529
|
+
('ommlds.minichain.completion', 'Uuid'),
|
|
530
530
|
('ommlds.minichain.resources', 'UseResources'),
|
|
531
531
|
('ommlds.minichain.standard', 'ApiUrl'),
|
|
532
532
|
('ommlds.minichain.standard', 'Device'),
|
|
@@ -1156,8 +1156,7 @@ def _process_dataclass__b4a9277b8c9559fb4e325a8c35bc504f30ab2294():
|
|
|
1156
1156
|
('ommlds.minichain.chat.tools.execution', 'ToolFn.Output'),
|
|
1157
1157
|
('ommlds.minichain.chat.tools.execution', 'ToolFn.RawKwargsInput'),
|
|
1158
1158
|
('ommlds.minichain.chat.tools.execution', 'ToolFn.RawStringOutput'),
|
|
1159
|
-
('ommlds.minichain.
|
|
1160
|
-
('ommlds.minichain.wrappers.retry', 'RetryServiceMaxRetriesExceededError'),
|
|
1159
|
+
('ommlds.minichain.completion', 'MetadataContainerDataclass'),
|
|
1161
1160
|
),
|
|
1162
1161
|
)
|
|
1163
1162
|
def _process_dataclass__e1f7edfe11f2b721d6a656c46e698fedc95461bb():
|
|
@@ -9176,6 +9175,111 @@ def _process_dataclass__78434834a42584e4ebc7f4ae0b50787fc65e4c8e():
|
|
|
9176
9175
|
return _process_dataclass
|
|
9177
9176
|
|
|
9178
9177
|
|
|
9178
|
+
@_register(
|
|
9179
|
+
plan_repr=(
|
|
9180
|
+
"Plans(tup=(CopyPlan(fields=('status', 'data')), EqPlan(fields=('status', 'data')), HashPlan(action='set_none',"
|
|
9181
|
+
" fields=None, cache=None), InitPlan(fields=(InitPlan.Field(name='status', annotation=OpRef(name='init.fields.0"
|
|
9182
|
+
".annotation'), default=None, default_factory=None, init=True, override=False, field_type=FieldType.INSTANCE, c"
|
|
9183
|
+
"oerce=None, validate=None, check_type=None), InitPlan.Field(name='data', annotation=OpRef(name='init.fields.1."
|
|
9184
|
+
"annotation'), default=OpRef(name='init.fields.1.default'), default_factory=None, init=True, override=False, fi"
|
|
9185
|
+
"eld_type=FieldType.INSTANCE, coerce=None, validate=None, check_type=None)), self_param='self', std_params=('st"
|
|
9186
|
+
"atus', 'data'), kw_only_params=(), frozen=False, slots=False, post_init_params=None, init_fns=(), validate_fns"
|
|
9187
|
+
"=()), ReprPlan(fields=(ReprPlan.Field(name='status', kw_only=False, fn=None), ReprPlan.Field(name='data', kw_o"
|
|
9188
|
+
"nly=False, fn=None)), id=False, terse=False, default_fn=None)))"
|
|
9189
|
+
),
|
|
9190
|
+
plan_repr_sha1='413d6ce08934686bb49634229b1fa2a779ae3321',
|
|
9191
|
+
op_ref_idents=(
|
|
9192
|
+
'__dataclass__init__fields__0__annotation',
|
|
9193
|
+
'__dataclass__init__fields__1__annotation',
|
|
9194
|
+
'__dataclass__init__fields__1__default',
|
|
9195
|
+
),
|
|
9196
|
+
cls_names=(
|
|
9197
|
+
('ommlds.minichain.backends.impls.openai.stream', 'OpenaiChatChoicesStreamServiceError'),
|
|
9198
|
+
),
|
|
9199
|
+
)
|
|
9200
|
+
def _process_dataclass__413d6ce08934686bb49634229b1fa2a779ae3321():
|
|
9201
|
+
def _process_dataclass(
|
|
9202
|
+
*,
|
|
9203
|
+
__dataclass__cls,
|
|
9204
|
+
__dataclass__init__fields__0__annotation,
|
|
9205
|
+
__dataclass__init__fields__1__annotation,
|
|
9206
|
+
__dataclass__init__fields__1__default,
|
|
9207
|
+
__dataclass__FieldFnValidationError, # noqa
|
|
9208
|
+
__dataclass__FieldTypeValidationError, # noqa
|
|
9209
|
+
__dataclass__FnValidationError, # noqa
|
|
9210
|
+
__dataclass__FrozenInstanceError=dataclasses.FrozenInstanceError, # noqa
|
|
9211
|
+
__dataclass__FunctionType=types.FunctionType, # noqa
|
|
9212
|
+
__dataclass__HAS_DEFAULT_FACTORY=dataclasses._HAS_DEFAULT_FACTORY, # noqa
|
|
9213
|
+
__dataclass__MISSING=dataclasses.MISSING, # noqa
|
|
9214
|
+
__dataclass__None=None, # noqa
|
|
9215
|
+
__dataclass__TypeError=TypeError, # noqa
|
|
9216
|
+
__dataclass___recursive_repr=reprlib.recursive_repr, # noqa
|
|
9217
|
+
__dataclass__isinstance=isinstance, # noqa
|
|
9218
|
+
__dataclass__object_setattr=object.__setattr__, # noqa
|
|
9219
|
+
__dataclass__property=property, # noqa
|
|
9220
|
+
):
|
|
9221
|
+
def __copy__(self):
|
|
9222
|
+
if self.__class__ is not __dataclass__cls:
|
|
9223
|
+
raise TypeError(self)
|
|
9224
|
+
return __dataclass__cls( # noqa
|
|
9225
|
+
status=self.status,
|
|
9226
|
+
data=self.data,
|
|
9227
|
+
)
|
|
9228
|
+
|
|
9229
|
+
__copy__.__qualname__ = f"{__dataclass__cls.__qualname__}.__copy__"
|
|
9230
|
+
if '__copy__' in __dataclass__cls.__dict__:
|
|
9231
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __copy__ in class {__dataclass__cls.__name__}")
|
|
9232
|
+
setattr(__dataclass__cls, '__copy__', __copy__)
|
|
9233
|
+
|
|
9234
|
+
def __eq__(self, other):
|
|
9235
|
+
if self is other:
|
|
9236
|
+
return True
|
|
9237
|
+
if self.__class__ is not other.__class__:
|
|
9238
|
+
return NotImplemented
|
|
9239
|
+
return (
|
|
9240
|
+
self.status == other.status and
|
|
9241
|
+
self.data == other.data
|
|
9242
|
+
)
|
|
9243
|
+
|
|
9244
|
+
__eq__.__qualname__ = f"{__dataclass__cls.__qualname__}.__eq__"
|
|
9245
|
+
if '__eq__' in __dataclass__cls.__dict__:
|
|
9246
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __eq__ in class {__dataclass__cls.__name__}")
|
|
9247
|
+
setattr(__dataclass__cls, '__eq__', __eq__)
|
|
9248
|
+
|
|
9249
|
+
setattr(__dataclass__cls, '__hash__', None)
|
|
9250
|
+
|
|
9251
|
+
def __init__(
|
|
9252
|
+
self,
|
|
9253
|
+
status: __dataclass__init__fields__0__annotation,
|
|
9254
|
+
data: __dataclass__init__fields__1__annotation = __dataclass__init__fields__1__default,
|
|
9255
|
+
) -> __dataclass__None:
|
|
9256
|
+
self.status = status
|
|
9257
|
+
self.data = data
|
|
9258
|
+
|
|
9259
|
+
__init__.__qualname__ = f"{__dataclass__cls.__qualname__}.__init__"
|
|
9260
|
+
if '__init__' in __dataclass__cls.__dict__:
|
|
9261
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __init__ in class {__dataclass__cls.__name__}")
|
|
9262
|
+
setattr(__dataclass__cls, '__init__', __init__)
|
|
9263
|
+
|
|
9264
|
+
@__dataclass___recursive_repr()
|
|
9265
|
+
def __repr__(self):
|
|
9266
|
+
parts = []
|
|
9267
|
+
parts.append(f"status={self.status!r}")
|
|
9268
|
+
parts.append(f"data={self.data!r}")
|
|
9269
|
+
return (
|
|
9270
|
+
f"{self.__class__.__qualname__}("
|
|
9271
|
+
f"{', '.join(parts)}"
|
|
9272
|
+
f")"
|
|
9273
|
+
)
|
|
9274
|
+
|
|
9275
|
+
__repr__.__qualname__ = f"{__dataclass__cls.__qualname__}.__repr__"
|
|
9276
|
+
if '__repr__' in __dataclass__cls.__dict__:
|
|
9277
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __repr__ in class {__dataclass__cls.__name__}")
|
|
9278
|
+
setattr(__dataclass__cls, '__repr__', __repr__)
|
|
9279
|
+
|
|
9280
|
+
return _process_dataclass
|
|
9281
|
+
|
|
9282
|
+
|
|
9179
9283
|
@_register(
|
|
9180
9284
|
plan_repr=(
|
|
9181
9285
|
"Plans(tup=(CopyPlan(fields=('tokens',)), EqPlan(fields=('tokens',)), HashPlan(action='set_none', fields=None, "
|
|
@@ -14376,30 +14480,36 @@ def _process_dataclass__6c2988a8870fad207eb0703de627596cae1b7381():
|
|
|
14376
14480
|
|
|
14377
14481
|
@_register(
|
|
14378
14482
|
plan_repr=(
|
|
14379
|
-
"Plans(tup=(CopyPlan(fields=('v', '_options')), EqPlan(fields=('v', '_options'
|
|
14380
|
-
"
|
|
14381
|
-
"
|
|
14382
|
-
"
|
|
14383
|
-
"=None), InitPlan.Field(name='_options', annotation=OpRef(
|
|
14384
|
-
"'init.fields.1.default'), default_factory=None, init=True,
|
|
14385
|
-
"
|
|
14386
|
-
"
|
|
14387
|
-
"
|
|
14388
|
-
"
|
|
14389
|
-
|
|
14390
|
-
|
|
14483
|
+
"Plans(tup=(CopyPlan(fields=('v', '_options', '_metadata')), EqPlan(fields=('v', '_options', '_metadata')), Fro"
|
|
14484
|
+
"zenPlan(fields=('v', '_options', '_metadata'), allow_dynamic_dunder_attrs=True), HashPlan(action='add', fields"
|
|
14485
|
+
"=('v', '_options', '_metadata'), cache=False), InitPlan(fields=(InitPlan.Field(name='v', annotation=OpRef(name"
|
|
14486
|
+
"='init.fields.0.annotation'), default=None, default_factory=None, init=True, override=False, field_type=FieldT"
|
|
14487
|
+
"ype.INSTANCE, coerce=None, validate=None, check_type=None), InitPlan.Field(name='_options', annotation=OpRef(n"
|
|
14488
|
+
"ame='init.fields.1.annotation'), default=OpRef(name='init.fields.1.default'), default_factory=None, init=True,"
|
|
14489
|
+
" override=False, field_type=FieldType.INSTANCE, coerce=OpRef(name='init.fields.1.coerce'), validate=None, chec"
|
|
14490
|
+
"k_type=None), InitPlan.Field(name='_metadata', annotation=OpRef(name='init.fields.2.annotation'), default=OpRe"
|
|
14491
|
+
"f(name='init.fields.2.default'), default_factory=None, init=True, override=False, field_type=FieldType.INSTANC"
|
|
14492
|
+
"E, coerce=OpRef(name='init.fields.2.coerce'), validate=None, check_type=None)), self_param='self', std_params="
|
|
14493
|
+
"('v', '_options'), kw_only_params=('_metadata',), frozen=True, slots=False, post_init_params=None, init_fns=()"
|
|
14494
|
+
", validate_fns=()), ReprPlan(fields=(ReprPlan.Field(name='v', kw_only=False, fn=None), ReprPlan.Field(name='_o"
|
|
14495
|
+
"ptions', kw_only=False, fn=OpRef(name='repr.fns.1.fn'))), id=False, terse=True, default_fn=None)))"
|
|
14496
|
+
),
|
|
14497
|
+
plan_repr_sha1='5ad521f7b0f01dca6ec3106cae31554159200bad',
|
|
14391
14498
|
op_ref_idents=(
|
|
14392
14499
|
'__dataclass__init__fields__0__annotation',
|
|
14393
14500
|
'__dataclass__init__fields__1__annotation',
|
|
14394
14501
|
'__dataclass__init__fields__1__coerce',
|
|
14395
14502
|
'__dataclass__init__fields__1__default',
|
|
14503
|
+
'__dataclass__init__fields__2__annotation',
|
|
14504
|
+
'__dataclass__init__fields__2__coerce',
|
|
14505
|
+
'__dataclass__init__fields__2__default',
|
|
14396
14506
|
'__dataclass__repr__fns__1__fn',
|
|
14397
14507
|
),
|
|
14398
14508
|
cls_names=(
|
|
14399
14509
|
('ommlds.minichain.completion', 'Request'),
|
|
14400
14510
|
),
|
|
14401
14511
|
)
|
|
14402
|
-
def
|
|
14512
|
+
def _process_dataclass__5ad521f7b0f01dca6ec3106cae31554159200bad():
|
|
14403
14513
|
def _process_dataclass(
|
|
14404
14514
|
*,
|
|
14405
14515
|
__dataclass__cls,
|
|
@@ -14407,6 +14517,9 @@ def _process_dataclass__0023b16f6689ceccd2788050f6aa52d8eb36a4b3():
|
|
|
14407
14517
|
__dataclass__init__fields__1__annotation,
|
|
14408
14518
|
__dataclass__init__fields__1__coerce,
|
|
14409
14519
|
__dataclass__init__fields__1__default,
|
|
14520
|
+
__dataclass__init__fields__2__annotation,
|
|
14521
|
+
__dataclass__init__fields__2__coerce,
|
|
14522
|
+
__dataclass__init__fields__2__default,
|
|
14410
14523
|
__dataclass__repr__fns__1__fn,
|
|
14411
14524
|
__dataclass__FieldFnValidationError, # noqa
|
|
14412
14525
|
__dataclass__FieldTypeValidationError, # noqa
|
|
@@ -14428,6 +14541,7 @@ def _process_dataclass__0023b16f6689ceccd2788050f6aa52d8eb36a4b3():
|
|
|
14428
14541
|
return __dataclass__cls( # noqa
|
|
14429
14542
|
v=self.v,
|
|
14430
14543
|
_options=self._options,
|
|
14544
|
+
_metadata=self._metadata,
|
|
14431
14545
|
)
|
|
14432
14546
|
|
|
14433
14547
|
__copy__.__qualname__ = f"{__dataclass__cls.__qualname__}.__copy__"
|
|
@@ -14442,7 +14556,8 @@ def _process_dataclass__0023b16f6689ceccd2788050f6aa52d8eb36a4b3():
|
|
|
14442
14556
|
return NotImplemented
|
|
14443
14557
|
return (
|
|
14444
14558
|
self.v == other.v and
|
|
14445
|
-
self._options == other._options
|
|
14559
|
+
self._options == other._options and
|
|
14560
|
+
self._metadata == other._metadata
|
|
14446
14561
|
)
|
|
14447
14562
|
|
|
14448
14563
|
__eq__.__qualname__ = f"{__dataclass__cls.__qualname__}.__eq__"
|
|
@@ -14453,6 +14568,7 @@ def _process_dataclass__0023b16f6689ceccd2788050f6aa52d8eb36a4b3():
|
|
|
14453
14568
|
__dataclass___setattr_frozen_fields = {
|
|
14454
14569
|
'v',
|
|
14455
14570
|
'_options',
|
|
14571
|
+
'_metadata',
|
|
14456
14572
|
}
|
|
14457
14573
|
|
|
14458
14574
|
def __setattr__(self, name, value):
|
|
@@ -14474,6 +14590,7 @@ def _process_dataclass__0023b16f6689ceccd2788050f6aa52d8eb36a4b3():
|
|
|
14474
14590
|
__dataclass___delattr_frozen_fields = {
|
|
14475
14591
|
'v',
|
|
14476
14592
|
'_options',
|
|
14593
|
+
'_metadata',
|
|
14477
14594
|
}
|
|
14478
14595
|
|
|
14479
14596
|
def __delattr__(self, name):
|
|
@@ -14496,6 +14613,7 @@ def _process_dataclass__0023b16f6689ceccd2788050f6aa52d8eb36a4b3():
|
|
|
14496
14613
|
return hash((
|
|
14497
14614
|
self.v,
|
|
14498
14615
|
self._options,
|
|
14616
|
+
self._metadata,
|
|
14499
14617
|
))
|
|
14500
14618
|
|
|
14501
14619
|
__hash__.__qualname__ = f"{__dataclass__cls.__qualname__}.__hash__"
|
|
@@ -14505,10 +14623,14 @@ def _process_dataclass__0023b16f6689ceccd2788050f6aa52d8eb36a4b3():
|
|
|
14505
14623
|
self,
|
|
14506
14624
|
v: __dataclass__init__fields__0__annotation,
|
|
14507
14625
|
_options: __dataclass__init__fields__1__annotation = __dataclass__init__fields__1__default,
|
|
14626
|
+
*,
|
|
14627
|
+
_metadata: __dataclass__init__fields__2__annotation = __dataclass__init__fields__2__default,
|
|
14508
14628
|
) -> __dataclass__None:
|
|
14509
14629
|
_options = __dataclass__init__fields__1__coerce(_options)
|
|
14630
|
+
_metadata = __dataclass__init__fields__2__coerce(_metadata)
|
|
14510
14631
|
__dataclass__object_setattr(self, 'v', v)
|
|
14511
14632
|
__dataclass__object_setattr(self, '_options', _options)
|
|
14633
|
+
__dataclass__object_setattr(self, '_metadata', _metadata)
|
|
14512
14634
|
|
|
14513
14635
|
__init__.__qualname__ = f"{__dataclass__cls.__qualname__}.__init__"
|
|
14514
14636
|
if '__init__' in __dataclass__cls.__dict__:
|
|
@@ -14537,30 +14659,36 @@ def _process_dataclass__0023b16f6689ceccd2788050f6aa52d8eb36a4b3():
|
|
|
14537
14659
|
|
|
14538
14660
|
@_register(
|
|
14539
14661
|
plan_repr=(
|
|
14540
|
-
"Plans(tup=(CopyPlan(fields=('v', '_outputs')), EqPlan(fields=('v', '_outputs'
|
|
14541
|
-
"
|
|
14542
|
-
"
|
|
14543
|
-
"
|
|
14544
|
-
"=None), InitPlan.Field(name='_outputs', annotation=OpRef(
|
|
14545
|
-
"'init.fields.1.default'), default_factory=None, init=True,
|
|
14546
|
-
"
|
|
14547
|
-
"
|
|
14548
|
-
"
|
|
14549
|
-
"
|
|
14550
|
-
|
|
14551
|
-
|
|
14662
|
+
"Plans(tup=(CopyPlan(fields=('v', '_outputs', '_metadata')), EqPlan(fields=('v', '_outputs', '_metadata')), Fro"
|
|
14663
|
+
"zenPlan(fields=('v', '_outputs', '_metadata'), allow_dynamic_dunder_attrs=True), HashPlan(action='add', fields"
|
|
14664
|
+
"=('v', '_outputs', '_metadata'), cache=False), InitPlan(fields=(InitPlan.Field(name='v', annotation=OpRef(name"
|
|
14665
|
+
"='init.fields.0.annotation'), default=None, default_factory=None, init=True, override=False, field_type=FieldT"
|
|
14666
|
+
"ype.INSTANCE, coerce=None, validate=None, check_type=None), InitPlan.Field(name='_outputs', annotation=OpRef(n"
|
|
14667
|
+
"ame='init.fields.1.annotation'), default=OpRef(name='init.fields.1.default'), default_factory=None, init=True,"
|
|
14668
|
+
" override=False, field_type=FieldType.INSTANCE, coerce=OpRef(name='init.fields.1.coerce'), validate=None, chec"
|
|
14669
|
+
"k_type=None), InitPlan.Field(name='_metadata', annotation=OpRef(name='init.fields.2.annotation'), default=OpRe"
|
|
14670
|
+
"f(name='init.fields.2.default'), default_factory=None, init=True, override=False, field_type=FieldType.INSTANC"
|
|
14671
|
+
"E, coerce=OpRef(name='init.fields.2.coerce'), validate=None, check_type=None)), self_param='self', std_params="
|
|
14672
|
+
"('v', '_outputs'), kw_only_params=('_metadata',), frozen=True, slots=False, post_init_params=None, init_fns=()"
|
|
14673
|
+
", validate_fns=()), ReprPlan(fields=(ReprPlan.Field(name='v', kw_only=False, fn=None), ReprPlan.Field(name='_o"
|
|
14674
|
+
"utputs', kw_only=False, fn=OpRef(name='repr.fns.1.fn'))), id=False, terse=True, default_fn=None)))"
|
|
14675
|
+
),
|
|
14676
|
+
plan_repr_sha1='f1aa475ec14c79b9f69394cd5f1359cf816a04ce',
|
|
14552
14677
|
op_ref_idents=(
|
|
14553
14678
|
'__dataclass__init__fields__0__annotation',
|
|
14554
14679
|
'__dataclass__init__fields__1__annotation',
|
|
14555
14680
|
'__dataclass__init__fields__1__coerce',
|
|
14556
14681
|
'__dataclass__init__fields__1__default',
|
|
14682
|
+
'__dataclass__init__fields__2__annotation',
|
|
14683
|
+
'__dataclass__init__fields__2__coerce',
|
|
14684
|
+
'__dataclass__init__fields__2__default',
|
|
14557
14685
|
'__dataclass__repr__fns__1__fn',
|
|
14558
14686
|
),
|
|
14559
14687
|
cls_names=(
|
|
14560
14688
|
('ommlds.minichain.completion', 'Response'),
|
|
14561
14689
|
),
|
|
14562
14690
|
)
|
|
14563
|
-
def
|
|
14691
|
+
def _process_dataclass__f1aa475ec14c79b9f69394cd5f1359cf816a04ce():
|
|
14564
14692
|
def _process_dataclass(
|
|
14565
14693
|
*,
|
|
14566
14694
|
__dataclass__cls,
|
|
@@ -14568,6 +14696,9 @@ def _process_dataclass__c2386e505e36d7c0a884a75edc8c58926b6fae2c():
|
|
|
14568
14696
|
__dataclass__init__fields__1__annotation,
|
|
14569
14697
|
__dataclass__init__fields__1__coerce,
|
|
14570
14698
|
__dataclass__init__fields__1__default,
|
|
14699
|
+
__dataclass__init__fields__2__annotation,
|
|
14700
|
+
__dataclass__init__fields__2__coerce,
|
|
14701
|
+
__dataclass__init__fields__2__default,
|
|
14571
14702
|
__dataclass__repr__fns__1__fn,
|
|
14572
14703
|
__dataclass__FieldFnValidationError, # noqa
|
|
14573
14704
|
__dataclass__FieldTypeValidationError, # noqa
|
|
@@ -14589,6 +14720,7 @@ def _process_dataclass__c2386e505e36d7c0a884a75edc8c58926b6fae2c():
|
|
|
14589
14720
|
return __dataclass__cls( # noqa
|
|
14590
14721
|
v=self.v,
|
|
14591
14722
|
_outputs=self._outputs,
|
|
14723
|
+
_metadata=self._metadata,
|
|
14592
14724
|
)
|
|
14593
14725
|
|
|
14594
14726
|
__copy__.__qualname__ = f"{__dataclass__cls.__qualname__}.__copy__"
|
|
@@ -14603,7 +14735,8 @@ def _process_dataclass__c2386e505e36d7c0a884a75edc8c58926b6fae2c():
|
|
|
14603
14735
|
return NotImplemented
|
|
14604
14736
|
return (
|
|
14605
14737
|
self.v == other.v and
|
|
14606
|
-
self._outputs == other._outputs
|
|
14738
|
+
self._outputs == other._outputs and
|
|
14739
|
+
self._metadata == other._metadata
|
|
14607
14740
|
)
|
|
14608
14741
|
|
|
14609
14742
|
__eq__.__qualname__ = f"{__dataclass__cls.__qualname__}.__eq__"
|
|
@@ -14614,6 +14747,7 @@ def _process_dataclass__c2386e505e36d7c0a884a75edc8c58926b6fae2c():
|
|
|
14614
14747
|
__dataclass___setattr_frozen_fields = {
|
|
14615
14748
|
'v',
|
|
14616
14749
|
'_outputs',
|
|
14750
|
+
'_metadata',
|
|
14617
14751
|
}
|
|
14618
14752
|
|
|
14619
14753
|
def __setattr__(self, name, value):
|
|
@@ -14635,6 +14769,7 @@ def _process_dataclass__c2386e505e36d7c0a884a75edc8c58926b6fae2c():
|
|
|
14635
14769
|
__dataclass___delattr_frozen_fields = {
|
|
14636
14770
|
'v',
|
|
14637
14771
|
'_outputs',
|
|
14772
|
+
'_metadata',
|
|
14638
14773
|
}
|
|
14639
14774
|
|
|
14640
14775
|
def __delattr__(self, name):
|
|
@@ -14657,6 +14792,7 @@ def _process_dataclass__c2386e505e36d7c0a884a75edc8c58926b6fae2c():
|
|
|
14657
14792
|
return hash((
|
|
14658
14793
|
self.v,
|
|
14659
14794
|
self._outputs,
|
|
14795
|
+
self._metadata,
|
|
14660
14796
|
))
|
|
14661
14797
|
|
|
14662
14798
|
__hash__.__qualname__ = f"{__dataclass__cls.__qualname__}.__hash__"
|
|
@@ -14666,10 +14802,14 @@ def _process_dataclass__c2386e505e36d7c0a884a75edc8c58926b6fae2c():
|
|
|
14666
14802
|
self,
|
|
14667
14803
|
v: __dataclass__init__fields__0__annotation,
|
|
14668
14804
|
_outputs: __dataclass__init__fields__1__annotation = __dataclass__init__fields__1__default,
|
|
14805
|
+
*,
|
|
14806
|
+
_metadata: __dataclass__init__fields__2__annotation = __dataclass__init__fields__2__default,
|
|
14669
14807
|
) -> __dataclass__None:
|
|
14670
14808
|
_outputs = __dataclass__init__fields__1__coerce(_outputs)
|
|
14809
|
+
_metadata = __dataclass__init__fields__2__coerce(_metadata)
|
|
14671
14810
|
__dataclass__object_setattr(self, 'v', v)
|
|
14672
14811
|
__dataclass__object_setattr(self, '_outputs', _outputs)
|
|
14812
|
+
__dataclass__object_setattr(self, '_metadata', _metadata)
|
|
14673
14813
|
|
|
14674
14814
|
__init__.__qualname__ = f"{__dataclass__cls.__qualname__}.__init__"
|
|
14675
14815
|
if '__init__' in __dataclass__cls.__dict__:
|
|
@@ -17910,20 +18050,20 @@ def _process_dataclass__c5ebc75df7787604091e8a5696458c845a88b433():
|
|
|
17910
18050
|
|
|
17911
18051
|
@_register(
|
|
17912
18052
|
plan_repr=(
|
|
17913
|
-
"Plans(tup=(CopyPlan(fields=('rty', '
|
|
17914
|
-
"
|
|
17915
|
-
", 'v_m'), cache=False), InitPlan(fields=(InitPlan.Field(name='rty', annotation=OpRef(name='init.fields.0.
|
|
17916
|
-
"
|
|
17917
|
-
"None, validate=None, check_type=None), InitPlan.Field(name='
|
|
17918
|
-
"
|
|
17919
|
-
"=None, validate=None, check_type=None), InitPlan.Field(name='v_m', annotation=OpRef(name='init.fields.2.
|
|
17920
|
-
"
|
|
17921
|
-
"
|
|
17922
|
-
"(), frozen=True, slots=False, post_init_params=None, init_fns=(), validate_fns=()), ReprPlan(fields=(
|
|
17923
|
-
"Field(name='rty', kw_only=False, fn=None), ReprPlan.Field(name='
|
|
17924
|
-
"
|
|
17925
|
-
),
|
|
17926
|
-
plan_repr_sha1='
|
|
18053
|
+
"Plans(tup=(CopyPlan(fields=('rty', 'rr_flds', 'v_m')), EqPlan(fields=('rty', 'rr_flds', 'v_m')), FrozenPlan(fi"
|
|
18054
|
+
"elds=('rty', 'rr_flds', 'v_m'), allow_dynamic_dunder_attrs=False), HashPlan(action='add', fields=('rty', 'rr_f"
|
|
18055
|
+
"lds', 'v_m'), cache=False), InitPlan(fields=(InitPlan.Field(name='rty', annotation=OpRef(name='init.fields.0.a"
|
|
18056
|
+
"nnotation'), default=None, default_factory=None, init=True, override=False, field_type=FieldType.INSTANCE, coe"
|
|
18057
|
+
"rce=None, validate=None, check_type=None), InitPlan.Field(name='rr_flds', annotation=OpRef(name='init.fields.1"
|
|
18058
|
+
".annotation'), default=None, default_factory=None, init=True, override=False, field_type=FieldType.INSTANCE, c"
|
|
18059
|
+
"oerce=None, validate=None, check_type=None), InitPlan.Field(name='v_m', annotation=OpRef(name='init.fields.2.a"
|
|
18060
|
+
"nnotation'), default=None, default_factory=None, init=True, override=False, field_type=FieldType.INSTANCE, coe"
|
|
18061
|
+
"rce=None, validate=None, check_type=None)), self_param='self', std_params=('rty', 'rr_flds', 'v_m'), kw_only_p"
|
|
18062
|
+
"arams=(), frozen=True, slots=False, post_init_params=None, init_fns=(), validate_fns=()), ReprPlan(fields=(Rep"
|
|
18063
|
+
"rPlan.Field(name='rty', kw_only=False, fn=None), ReprPlan.Field(name='rr_flds', kw_only=False, fn=None), ReprP"
|
|
18064
|
+
"lan.Field(name='v_m', kw_only=False, fn=None)), id=False, terse=False, default_fn=None)))"
|
|
18065
|
+
),
|
|
18066
|
+
plan_repr_sha1='c125868d27a1b2e29aef80e41118485a9e3fb492',
|
|
17927
18067
|
op_ref_idents=(
|
|
17928
18068
|
'__dataclass__init__fields__0__annotation',
|
|
17929
18069
|
'__dataclass__init__fields__1__annotation',
|
|
@@ -17933,7 +18073,7 @@ def _process_dataclass__c5ebc75df7787604091e8a5696458c845a88b433():
|
|
|
17933
18073
|
('ommlds.minichain.services._marshal', '_RequestResponseMarshaler'),
|
|
17934
18074
|
),
|
|
17935
18075
|
)
|
|
17936
|
-
def
|
|
18076
|
+
def _process_dataclass__c125868d27a1b2e29aef80e41118485a9e3fb492():
|
|
17937
18077
|
def _process_dataclass(
|
|
17938
18078
|
*,
|
|
17939
18079
|
__dataclass__cls,
|
|
@@ -17959,7 +18099,7 @@ def _process_dataclass__3351f2836d3548cfa09118e14f4aabcde84625f4():
|
|
|
17959
18099
|
raise TypeError(self)
|
|
17960
18100
|
return __dataclass__cls( # noqa
|
|
17961
18101
|
rty=self.rty,
|
|
17962
|
-
|
|
18102
|
+
rr_flds=self.rr_flds,
|
|
17963
18103
|
v_m=self.v_m,
|
|
17964
18104
|
)
|
|
17965
18105
|
|
|
@@ -17975,7 +18115,7 @@ def _process_dataclass__3351f2836d3548cfa09118e14f4aabcde84625f4():
|
|
|
17975
18115
|
return NotImplemented
|
|
17976
18116
|
return (
|
|
17977
18117
|
self.rty == other.rty and
|
|
17978
|
-
self.
|
|
18118
|
+
self.rr_flds == other.rr_flds and
|
|
17979
18119
|
self.v_m == other.v_m
|
|
17980
18120
|
)
|
|
17981
18121
|
|
|
@@ -17986,7 +18126,7 @@ def _process_dataclass__3351f2836d3548cfa09118e14f4aabcde84625f4():
|
|
|
17986
18126
|
|
|
17987
18127
|
__dataclass___setattr_frozen_fields = {
|
|
17988
18128
|
'rty',
|
|
17989
|
-
'
|
|
18129
|
+
'rr_flds',
|
|
17990
18130
|
'v_m',
|
|
17991
18131
|
}
|
|
17992
18132
|
|
|
@@ -18005,7 +18145,7 @@ def _process_dataclass__3351f2836d3548cfa09118e14f4aabcde84625f4():
|
|
|
18005
18145
|
|
|
18006
18146
|
__dataclass___delattr_frozen_fields = {
|
|
18007
18147
|
'rty',
|
|
18008
|
-
'
|
|
18148
|
+
'rr_flds',
|
|
18009
18149
|
'v_m',
|
|
18010
18150
|
}
|
|
18011
18151
|
|
|
@@ -18025,7 +18165,7 @@ def _process_dataclass__3351f2836d3548cfa09118e14f4aabcde84625f4():
|
|
|
18025
18165
|
def __hash__(self):
|
|
18026
18166
|
return hash((
|
|
18027
18167
|
self.rty,
|
|
18028
|
-
self.
|
|
18168
|
+
self.rr_flds,
|
|
18029
18169
|
self.v_m,
|
|
18030
18170
|
))
|
|
18031
18171
|
|
|
@@ -18035,11 +18175,11 @@ def _process_dataclass__3351f2836d3548cfa09118e14f4aabcde84625f4():
|
|
|
18035
18175
|
def __init__(
|
|
18036
18176
|
self,
|
|
18037
18177
|
rty: __dataclass__init__fields__0__annotation,
|
|
18038
|
-
|
|
18178
|
+
rr_flds: __dataclass__init__fields__1__annotation,
|
|
18039
18179
|
v_m: __dataclass__init__fields__2__annotation,
|
|
18040
18180
|
) -> __dataclass__None:
|
|
18041
18181
|
__dataclass__object_setattr(self, 'rty', rty)
|
|
18042
|
-
__dataclass__object_setattr(self, '
|
|
18182
|
+
__dataclass__object_setattr(self, 'rr_flds', rr_flds)
|
|
18043
18183
|
__dataclass__object_setattr(self, 'v_m', v_m)
|
|
18044
18184
|
|
|
18045
18185
|
__init__.__qualname__ = f"{__dataclass__cls.__qualname__}.__init__"
|
|
@@ -18051,7 +18191,7 @@ def _process_dataclass__3351f2836d3548cfa09118e14f4aabcde84625f4():
|
|
|
18051
18191
|
def __repr__(self):
|
|
18052
18192
|
parts = []
|
|
18053
18193
|
parts.append(f"rty={self.rty!r}")
|
|
18054
|
-
parts.append(f"
|
|
18194
|
+
parts.append(f"rr_flds={self.rr_flds!r}")
|
|
18055
18195
|
parts.append(f"v_m={self.v_m!r}")
|
|
18056
18196
|
return (
|
|
18057
18197
|
f"{self.__class__.__qualname__}("
|
|
@@ -18069,34 +18209,38 @@ def _process_dataclass__3351f2836d3548cfa09118e14f4aabcde84625f4():
|
|
|
18069
18209
|
|
|
18070
18210
|
@_register(
|
|
18071
18211
|
plan_repr=(
|
|
18072
|
-
"Plans(tup=(CopyPlan(fields=('rty', '
|
|
18073
|
-
" FrozenPlan(fields=('rty', '
|
|
18074
|
-
" fields=('rty', '
|
|
18075
|
-
"=OpRef(name='init.fields.0.annotation'), default=None, default_factory=
|
|
18076
|
-
"
|
|
18077
|
-
"
|
|
18078
|
-
"
|
|
18079
|
-
"OpRef(name='init.fields.2.annotation'), default=None, default_factory=
|
|
18080
|
-
"
|
|
18081
|
-
"
|
|
18082
|
-
"
|
|
18083
|
-
"
|
|
18084
|
-
"
|
|
18085
|
-
",
|
|
18086
|
-
"
|
|
18087
|
-
|
|
18088
|
-
|
|
18212
|
+
"Plans(tup=(CopyPlan(fields=('rty', 'rr_flds', 'v_u', 'tv_u', 'md_u')), EqPlan(fields=('rty', 'rr_flds', 'v_u',"
|
|
18213
|
+
" 'tv_u', 'md_u')), FrozenPlan(fields=('rty', 'rr_flds', 'v_u', 'tv_u', 'md_u'), allow_dynamic_dunder_attrs=Fal"
|
|
18214
|
+
"se), HashPlan(action='add', fields=('rty', 'rr_flds', 'v_u', 'tv_u', 'md_u'), cache=False), InitPlan(fields=(I"
|
|
18215
|
+
"nitPlan.Field(name='rty', annotation=OpRef(name='init.fields.0.annotation'), default=None, default_factory=Non"
|
|
18216
|
+
"e, init=True, override=False, field_type=FieldType.INSTANCE, coerce=None, validate=None, check_type=None), Ini"
|
|
18217
|
+
"tPlan.Field(name='rr_flds', annotation=OpRef(name='init.fields.1.annotation'), default=None, default_factory=N"
|
|
18218
|
+
"one, init=True, override=False, field_type=FieldType.INSTANCE, coerce=None, validate=None, check_type=None), I"
|
|
18219
|
+
"nitPlan.Field(name='v_u', annotation=OpRef(name='init.fields.2.annotation'), default=None, default_factory=Non"
|
|
18220
|
+
"e, init=True, override=False, field_type=FieldType.INSTANCE, coerce=None, validate=None, check_type=None), Ini"
|
|
18221
|
+
"tPlan.Field(name='tv_u', annotation=OpRef(name='init.fields.3.annotation'), default=None, default_factory=None"
|
|
18222
|
+
", init=True, override=False, field_type=FieldType.INSTANCE, coerce=None, validate=None, check_type=None), Init"
|
|
18223
|
+
"Plan.Field(name='md_u', annotation=OpRef(name='init.fields.4.annotation'), default=None, default_factory=None,"
|
|
18224
|
+
" init=True, override=False, field_type=FieldType.INSTANCE, coerce=None, validate=None, check_type=None)), self"
|
|
18225
|
+
"_param='self', std_params=('rty', 'rr_flds', 'v_u', 'tv_u', 'md_u'), kw_only_params=(), frozen=True, slots=Fal"
|
|
18226
|
+
"se, post_init_params=None, init_fns=(), validate_fns=()), ReprPlan(fields=(ReprPlan.Field(name='rty', kw_only="
|
|
18227
|
+
"False, fn=None), ReprPlan.Field(name='rr_flds', kw_only=False, fn=None), ReprPlan.Field(name='v_u', kw_only=Fa"
|
|
18228
|
+
"lse, fn=None), ReprPlan.Field(name='tv_u', kw_only=False, fn=None), ReprPlan.Field(name='md_u', kw_only=False,"
|
|
18229
|
+
" fn=None)), id=False, terse=False, default_fn=None)))"
|
|
18230
|
+
),
|
|
18231
|
+
plan_repr_sha1='c4fcb2b1f1cadf2a1ca803a56157e3f9b7cd6e1a',
|
|
18089
18232
|
op_ref_idents=(
|
|
18090
18233
|
'__dataclass__init__fields__0__annotation',
|
|
18091
18234
|
'__dataclass__init__fields__1__annotation',
|
|
18092
18235
|
'__dataclass__init__fields__2__annotation',
|
|
18093
18236
|
'__dataclass__init__fields__3__annotation',
|
|
18237
|
+
'__dataclass__init__fields__4__annotation',
|
|
18094
18238
|
),
|
|
18095
18239
|
cls_names=(
|
|
18096
18240
|
('ommlds.minichain.services._marshal', '_RequestResponseUnmarshaler'),
|
|
18097
18241
|
),
|
|
18098
18242
|
)
|
|
18099
|
-
def
|
|
18243
|
+
def _process_dataclass__c4fcb2b1f1cadf2a1ca803a56157e3f9b7cd6e1a():
|
|
18100
18244
|
def _process_dataclass(
|
|
18101
18245
|
*,
|
|
18102
18246
|
__dataclass__cls,
|
|
@@ -18104,6 +18248,7 @@ def _process_dataclass__48fce044c70087260e75d4a7c33663b383fb8b2a():
|
|
|
18104
18248
|
__dataclass__init__fields__1__annotation,
|
|
18105
18249
|
__dataclass__init__fields__2__annotation,
|
|
18106
18250
|
__dataclass__init__fields__3__annotation,
|
|
18251
|
+
__dataclass__init__fields__4__annotation,
|
|
18107
18252
|
__dataclass__FieldFnValidationError, # noqa
|
|
18108
18253
|
__dataclass__FieldTypeValidationError, # noqa
|
|
18109
18254
|
__dataclass__FnValidationError, # noqa
|
|
@@ -18123,9 +18268,10 @@ def _process_dataclass__48fce044c70087260e75d4a7c33663b383fb8b2a():
|
|
|
18123
18268
|
raise TypeError(self)
|
|
18124
18269
|
return __dataclass__cls( # noqa
|
|
18125
18270
|
rty=self.rty,
|
|
18126
|
-
|
|
18271
|
+
rr_flds=self.rr_flds,
|
|
18127
18272
|
v_u=self.v_u,
|
|
18128
18273
|
tv_u=self.tv_u,
|
|
18274
|
+
md_u=self.md_u,
|
|
18129
18275
|
)
|
|
18130
18276
|
|
|
18131
18277
|
__copy__.__qualname__ = f"{__dataclass__cls.__qualname__}.__copy__"
|
|
@@ -18140,9 +18286,10 @@ def _process_dataclass__48fce044c70087260e75d4a7c33663b383fb8b2a():
|
|
|
18140
18286
|
return NotImplemented
|
|
18141
18287
|
return (
|
|
18142
18288
|
self.rty == other.rty and
|
|
18143
|
-
self.
|
|
18289
|
+
self.rr_flds == other.rr_flds and
|
|
18144
18290
|
self.v_u == other.v_u and
|
|
18145
|
-
self.tv_u == other.tv_u
|
|
18291
|
+
self.tv_u == other.tv_u and
|
|
18292
|
+
self.md_u == other.md_u
|
|
18146
18293
|
)
|
|
18147
18294
|
|
|
18148
18295
|
__eq__.__qualname__ = f"{__dataclass__cls.__qualname__}.__eq__"
|
|
@@ -18152,9 +18299,10 @@ def _process_dataclass__48fce044c70087260e75d4a7c33663b383fb8b2a():
|
|
|
18152
18299
|
|
|
18153
18300
|
__dataclass___setattr_frozen_fields = {
|
|
18154
18301
|
'rty',
|
|
18155
|
-
'
|
|
18302
|
+
'rr_flds',
|
|
18156
18303
|
'v_u',
|
|
18157
18304
|
'tv_u',
|
|
18305
|
+
'md_u',
|
|
18158
18306
|
}
|
|
18159
18307
|
|
|
18160
18308
|
def __setattr__(self, name, value):
|
|
@@ -18172,9 +18320,10 @@ def _process_dataclass__48fce044c70087260e75d4a7c33663b383fb8b2a():
|
|
|
18172
18320
|
|
|
18173
18321
|
__dataclass___delattr_frozen_fields = {
|
|
18174
18322
|
'rty',
|
|
18175
|
-
'
|
|
18323
|
+
'rr_flds',
|
|
18176
18324
|
'v_u',
|
|
18177
18325
|
'tv_u',
|
|
18326
|
+
'md_u',
|
|
18178
18327
|
}
|
|
18179
18328
|
|
|
18180
18329
|
def __delattr__(self, name):
|
|
@@ -18193,9 +18342,10 @@ def _process_dataclass__48fce044c70087260e75d4a7c33663b383fb8b2a():
|
|
|
18193
18342
|
def __hash__(self):
|
|
18194
18343
|
return hash((
|
|
18195
18344
|
self.rty,
|
|
18196
|
-
self.
|
|
18345
|
+
self.rr_flds,
|
|
18197
18346
|
self.v_u,
|
|
18198
18347
|
self.tv_u,
|
|
18348
|
+
self.md_u,
|
|
18199
18349
|
))
|
|
18200
18350
|
|
|
18201
18351
|
__hash__.__qualname__ = f"{__dataclass__cls.__qualname__}.__hash__"
|
|
@@ -18204,14 +18354,16 @@ def _process_dataclass__48fce044c70087260e75d4a7c33663b383fb8b2a():
|
|
|
18204
18354
|
def __init__(
|
|
18205
18355
|
self,
|
|
18206
18356
|
rty: __dataclass__init__fields__0__annotation,
|
|
18207
|
-
|
|
18357
|
+
rr_flds: __dataclass__init__fields__1__annotation,
|
|
18208
18358
|
v_u: __dataclass__init__fields__2__annotation,
|
|
18209
18359
|
tv_u: __dataclass__init__fields__3__annotation,
|
|
18360
|
+
md_u: __dataclass__init__fields__4__annotation,
|
|
18210
18361
|
) -> __dataclass__None:
|
|
18211
18362
|
__dataclass__object_setattr(self, 'rty', rty)
|
|
18212
|
-
__dataclass__object_setattr(self, '
|
|
18363
|
+
__dataclass__object_setattr(self, 'rr_flds', rr_flds)
|
|
18213
18364
|
__dataclass__object_setattr(self, 'v_u', v_u)
|
|
18214
18365
|
__dataclass__object_setattr(self, 'tv_u', tv_u)
|
|
18366
|
+
__dataclass__object_setattr(self, 'md_u', md_u)
|
|
18215
18367
|
|
|
18216
18368
|
__init__.__qualname__ = f"{__dataclass__cls.__qualname__}.__init__"
|
|
18217
18369
|
if '__init__' in __dataclass__cls.__dict__:
|
|
@@ -18222,9 +18374,10 @@ def _process_dataclass__48fce044c70087260e75d4a7c33663b383fb8b2a():
|
|
|
18222
18374
|
def __repr__(self):
|
|
18223
18375
|
parts = []
|
|
18224
18376
|
parts.append(f"rty={self.rty!r}")
|
|
18225
|
-
parts.append(f"
|
|
18377
|
+
parts.append(f"rr_flds={self.rr_flds!r}")
|
|
18226
18378
|
parts.append(f"v_u={self.v_u!r}")
|
|
18227
18379
|
parts.append(f"tv_u={self.tv_u!r}")
|
|
18380
|
+
parts.append(f"md_u={self.md_u!r}")
|
|
18228
18381
|
return (
|
|
18229
18382
|
f"{self.__class__.__qualname__}("
|
|
18230
18383
|
f"{', '.join(parts)}"
|
|
@@ -19609,14 +19762,14 @@ def _process_dataclass__d1dcd40f048e6560420787a4291f3f9d415c2cf3():
|
|
|
19609
19762
|
|
|
19610
19763
|
@_register(
|
|
19611
19764
|
plan_repr=(
|
|
19612
|
-
"Plans(tup=(CopyPlan(fields=('e',)), EqPlan(fields=('e',)),
|
|
19613
|
-
"
|
|
19614
|
-
"
|
|
19615
|
-
"
|
|
19616
|
-
"
|
|
19617
|
-
"
|
|
19765
|
+
"Plans(tup=(CopyPlan(fields=('e',)), EqPlan(fields=('e',)), HashPlan(action='set_none', fields=None, cache=None"
|
|
19766
|
+
"), InitPlan(fields=(InitPlan.Field(name='e', annotation=OpRef(name='init.fields.0.annotation'), default=None, "
|
|
19767
|
+
"default_factory=None, init=True, override=False, field_type=FieldType.INSTANCE, coerce=None, validate=None, ch"
|
|
19768
|
+
"eck_type=None),), self_param='self', std_params=('e',), kw_only_params=(), frozen=False, slots=False, post_ini"
|
|
19769
|
+
"t_params=None, init_fns=(), validate_fns=()), ReprPlan(fields=(ReprPlan.Field(name='e', kw_only=False, fn=None"
|
|
19770
|
+
"),), id=False, terse=False, default_fn=None)))"
|
|
19618
19771
|
),
|
|
19619
|
-
plan_repr_sha1='
|
|
19772
|
+
plan_repr_sha1='bf53b269dcc5b5d524a0550ca66dfdd63db1aed9',
|
|
19620
19773
|
op_ref_idents=(
|
|
19621
19774
|
'__dataclass__init__fields__0__annotation',
|
|
19622
19775
|
),
|
|
@@ -19624,7 +19777,7 @@ def _process_dataclass__d1dcd40f048e6560420787a4291f3f9d415c2cf3():
|
|
|
19624
19777
|
('ommlds.minichain.wrappers.firstinwins', 'FirstInWinsServiceCancelledError'),
|
|
19625
19778
|
),
|
|
19626
19779
|
)
|
|
19627
|
-
def
|
|
19780
|
+
def _process_dataclass__bf53b269dcc5b5d524a0550ca66dfdd63db1aed9():
|
|
19628
19781
|
def _process_dataclass(
|
|
19629
19782
|
*,
|
|
19630
19783
|
__dataclass__cls,
|
|
@@ -19669,53 +19822,13 @@ def _process_dataclass__09d620230085f2ec30d46bc47d392ca3f53879f5():
|
|
|
19669
19822
|
raise __dataclass__TypeError(f"Cannot overwrite attribute __eq__ in class {__dataclass__cls.__name__}")
|
|
19670
19823
|
setattr(__dataclass__cls, '__eq__', __eq__)
|
|
19671
19824
|
|
|
19672
|
-
|
|
19673
|
-
'e',
|
|
19674
|
-
}
|
|
19675
|
-
|
|
19676
|
-
def __setattr__(self, name, value):
|
|
19677
|
-
if (
|
|
19678
|
-
type(self) is __dataclass__cls
|
|
19679
|
-
or name in __dataclass___setattr_frozen_fields
|
|
19680
|
-
):
|
|
19681
|
-
raise __dataclass__FrozenInstanceError(f"cannot assign to field {name!r}")
|
|
19682
|
-
super(__dataclass__cls, self).__setattr__(name, value)
|
|
19683
|
-
|
|
19684
|
-
__setattr__.__qualname__ = f"{__dataclass__cls.__qualname__}.__setattr__"
|
|
19685
|
-
if '__setattr__' in __dataclass__cls.__dict__:
|
|
19686
|
-
raise __dataclass__TypeError(f"Cannot overwrite attribute __setattr__ in class {__dataclass__cls.__name__}")
|
|
19687
|
-
setattr(__dataclass__cls, '__setattr__', __setattr__)
|
|
19688
|
-
|
|
19689
|
-
__dataclass___delattr_frozen_fields = {
|
|
19690
|
-
'e',
|
|
19691
|
-
}
|
|
19692
|
-
|
|
19693
|
-
def __delattr__(self, name):
|
|
19694
|
-
if (
|
|
19695
|
-
type(self) is __dataclass__cls
|
|
19696
|
-
or name in __dataclass___delattr_frozen_fields
|
|
19697
|
-
):
|
|
19698
|
-
raise __dataclass__FrozenInstanceError(f"cannot delete field {name!r}")
|
|
19699
|
-
super(__dataclass__cls, self).__delattr__(name)
|
|
19700
|
-
|
|
19701
|
-
__delattr__.__qualname__ = f"{__dataclass__cls.__qualname__}.__delattr__"
|
|
19702
|
-
if '__delattr__' in __dataclass__cls.__dict__:
|
|
19703
|
-
raise __dataclass__TypeError(f"Cannot overwrite attribute __delattr__ in class {__dataclass__cls.__name__}")
|
|
19704
|
-
setattr(__dataclass__cls, '__delattr__', __delattr__)
|
|
19705
|
-
|
|
19706
|
-
def __hash__(self):
|
|
19707
|
-
return hash((
|
|
19708
|
-
self.e,
|
|
19709
|
-
))
|
|
19710
|
-
|
|
19711
|
-
__hash__.__qualname__ = f"{__dataclass__cls.__qualname__}.__hash__"
|
|
19712
|
-
setattr(__dataclass__cls, '__hash__', __hash__)
|
|
19825
|
+
setattr(__dataclass__cls, '__hash__', None)
|
|
19713
19826
|
|
|
19714
19827
|
def __init__(
|
|
19715
19828
|
self,
|
|
19716
19829
|
e: __dataclass__init__fields__0__annotation,
|
|
19717
19830
|
) -> __dataclass__None:
|
|
19718
|
-
|
|
19831
|
+
self.e = e
|
|
19719
19832
|
|
|
19720
19833
|
__init__.__qualname__ = f"{__dataclass__cls.__qualname__}.__init__"
|
|
19721
19834
|
if '__init__' in __dataclass__cls.__dict__:
|
|
@@ -19904,6 +20017,294 @@ def _process_dataclass__338ef6c7e8d95c07d43101aa3fb2e5001c70b0ab():
|
|
|
19904
20017
|
return _process_dataclass
|
|
19905
20018
|
|
|
19906
20019
|
|
|
20020
|
+
@_register(
|
|
20021
|
+
plan_repr=(
|
|
20022
|
+
"Plans(tup=(CopyPlan(fields=('dt', 'req', 'resp', 'exc', 'stream_v')), EqPlan(fields=('dt', 'req', 'resp', 'exc"
|
|
20023
|
+
"', 'stream_v')), FrozenPlan(fields=('dt', 'req', 'resp', 'exc', 'stream_v'), allow_dynamic_dunder_attrs=False)"
|
|
20024
|
+
", HashPlan(action='add', fields=('dt', 'req', 'resp', 'exc', 'stream_v'), cache=False), InitPlan(fields=(InitP"
|
|
20025
|
+
"lan.Field(name='dt', annotation=OpRef(name='init.fields.0.annotation'), default=None, default_factory=OpRef(na"
|
|
20026
|
+
"me='init.fields.0.default_factory'), init=True, override=False, field_type=FieldType.INSTANCE, coerce=None, va"
|
|
20027
|
+
"lidate=None, check_type=None), InitPlan.Field(name='req', annotation=OpRef(name='init.fields.1.annotation'), d"
|
|
20028
|
+
"efault=OpRef(name='init.fields.1.default'), default_factory=None, init=True, override=False, field_type=FieldT"
|
|
20029
|
+
"ype.INSTANCE, coerce=None, validate=None, check_type=None), InitPlan.Field(name='resp', annotation=OpRef(name="
|
|
20030
|
+
"'init.fields.2.annotation'), default=OpRef(name='init.fields.2.default'), default_factory=None, init=True, ove"
|
|
20031
|
+
"rride=False, field_type=FieldType.INSTANCE, coerce=None, validate=None, check_type=None), InitPlan.Field(name="
|
|
20032
|
+
"'exc', annotation=OpRef(name='init.fields.3.annotation'), default=OpRef(name='init.fields.3.default'), default"
|
|
20033
|
+
"_factory=None, init=True, override=False, field_type=FieldType.INSTANCE, coerce=None, validate=None, check_typ"
|
|
20034
|
+
"e=None), InitPlan.Field(name='stream_v', annotation=OpRef(name='init.fields.4.annotation'), default=OpRef(name"
|
|
20035
|
+
"='init.fields.4.default'), default_factory=None, init=True, override=False, field_type=FieldType.INSTANCE, coe"
|
|
20036
|
+
"rce=None, validate=None, check_type=None)), self_param='self', std_params=(), kw_only_params=('dt', 'req', 're"
|
|
20037
|
+
"sp', 'exc', 'stream_v'), frozen=True, slots=False, post_init_params=None, init_fns=(), validate_fns=()), ReprP"
|
|
20038
|
+
"lan(fields=(ReprPlan.Field(name='dt', kw_only=True, fn=None), ReprPlan.Field(name='req', kw_only=True, fn=None"
|
|
20039
|
+
"), ReprPlan.Field(name='resp', kw_only=True, fn=None), ReprPlan.Field(name='exc', kw_only=True, fn=None), Repr"
|
|
20040
|
+
"Plan.Field(name='stream_v', kw_only=True, fn=None)), id=False, terse=False, default_fn=OpRef(name='repr.defaul"
|
|
20041
|
+
"t_fn'))))"
|
|
20042
|
+
),
|
|
20043
|
+
plan_repr_sha1='e4d635c950acb2270f4d7755e6070d0ab79058e5',
|
|
20044
|
+
op_ref_idents=(
|
|
20045
|
+
'__dataclass__init__fields__0__annotation',
|
|
20046
|
+
'__dataclass__init__fields__0__default_factory',
|
|
20047
|
+
'__dataclass__init__fields__1__annotation',
|
|
20048
|
+
'__dataclass__init__fields__1__default',
|
|
20049
|
+
'__dataclass__init__fields__2__annotation',
|
|
20050
|
+
'__dataclass__init__fields__2__default',
|
|
20051
|
+
'__dataclass__init__fields__3__annotation',
|
|
20052
|
+
'__dataclass__init__fields__3__default',
|
|
20053
|
+
'__dataclass__init__fields__4__annotation',
|
|
20054
|
+
'__dataclass__init__fields__4__default',
|
|
20055
|
+
'__dataclass__repr__default_fn',
|
|
20056
|
+
),
|
|
20057
|
+
cls_names=(
|
|
20058
|
+
('ommlds.minichain.wrappers.instrument', 'InstrumentedServiceEvent'),
|
|
20059
|
+
),
|
|
20060
|
+
)
|
|
20061
|
+
def _process_dataclass__e4d635c950acb2270f4d7755e6070d0ab79058e5():
|
|
20062
|
+
def _process_dataclass(
|
|
20063
|
+
*,
|
|
20064
|
+
__dataclass__cls,
|
|
20065
|
+
__dataclass__init__fields__0__annotation,
|
|
20066
|
+
__dataclass__init__fields__0__default_factory,
|
|
20067
|
+
__dataclass__init__fields__1__annotation,
|
|
20068
|
+
__dataclass__init__fields__1__default,
|
|
20069
|
+
__dataclass__init__fields__2__annotation,
|
|
20070
|
+
__dataclass__init__fields__2__default,
|
|
20071
|
+
__dataclass__init__fields__3__annotation,
|
|
20072
|
+
__dataclass__init__fields__3__default,
|
|
20073
|
+
__dataclass__init__fields__4__annotation,
|
|
20074
|
+
__dataclass__init__fields__4__default,
|
|
20075
|
+
__dataclass__repr__default_fn,
|
|
20076
|
+
__dataclass__FieldFnValidationError, # noqa
|
|
20077
|
+
__dataclass__FieldTypeValidationError, # noqa
|
|
20078
|
+
__dataclass__FnValidationError, # noqa
|
|
20079
|
+
__dataclass__FrozenInstanceError=dataclasses.FrozenInstanceError, # noqa
|
|
20080
|
+
__dataclass__FunctionType=types.FunctionType, # noqa
|
|
20081
|
+
__dataclass__HAS_DEFAULT_FACTORY=dataclasses._HAS_DEFAULT_FACTORY, # noqa
|
|
20082
|
+
__dataclass__MISSING=dataclasses.MISSING, # noqa
|
|
20083
|
+
__dataclass__None=None, # noqa
|
|
20084
|
+
__dataclass__TypeError=TypeError, # noqa
|
|
20085
|
+
__dataclass___recursive_repr=reprlib.recursive_repr, # noqa
|
|
20086
|
+
__dataclass__isinstance=isinstance, # noqa
|
|
20087
|
+
__dataclass__object_setattr=object.__setattr__, # noqa
|
|
20088
|
+
__dataclass__property=property, # noqa
|
|
20089
|
+
):
|
|
20090
|
+
def __copy__(self):
|
|
20091
|
+
if self.__class__ is not __dataclass__cls:
|
|
20092
|
+
raise TypeError(self)
|
|
20093
|
+
return __dataclass__cls( # noqa
|
|
20094
|
+
dt=self.dt,
|
|
20095
|
+
req=self.req,
|
|
20096
|
+
resp=self.resp,
|
|
20097
|
+
exc=self.exc,
|
|
20098
|
+
stream_v=self.stream_v,
|
|
20099
|
+
)
|
|
20100
|
+
|
|
20101
|
+
__copy__.__qualname__ = f"{__dataclass__cls.__qualname__}.__copy__"
|
|
20102
|
+
if '__copy__' in __dataclass__cls.__dict__:
|
|
20103
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __copy__ in class {__dataclass__cls.__name__}")
|
|
20104
|
+
setattr(__dataclass__cls, '__copy__', __copy__)
|
|
20105
|
+
|
|
20106
|
+
def __eq__(self, other):
|
|
20107
|
+
if self is other:
|
|
20108
|
+
return True
|
|
20109
|
+
if self.__class__ is not other.__class__:
|
|
20110
|
+
return NotImplemented
|
|
20111
|
+
return (
|
|
20112
|
+
self.dt == other.dt and
|
|
20113
|
+
self.req == other.req and
|
|
20114
|
+
self.resp == other.resp and
|
|
20115
|
+
self.exc == other.exc and
|
|
20116
|
+
self.stream_v == other.stream_v
|
|
20117
|
+
)
|
|
20118
|
+
|
|
20119
|
+
__eq__.__qualname__ = f"{__dataclass__cls.__qualname__}.__eq__"
|
|
20120
|
+
if '__eq__' in __dataclass__cls.__dict__:
|
|
20121
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __eq__ in class {__dataclass__cls.__name__}")
|
|
20122
|
+
setattr(__dataclass__cls, '__eq__', __eq__)
|
|
20123
|
+
|
|
20124
|
+
__dataclass___setattr_frozen_fields = {
|
|
20125
|
+
'dt',
|
|
20126
|
+
'req',
|
|
20127
|
+
'resp',
|
|
20128
|
+
'exc',
|
|
20129
|
+
'stream_v',
|
|
20130
|
+
}
|
|
20131
|
+
|
|
20132
|
+
def __setattr__(self, name, value):
|
|
20133
|
+
if (
|
|
20134
|
+
type(self) is __dataclass__cls
|
|
20135
|
+
or name in __dataclass___setattr_frozen_fields
|
|
20136
|
+
):
|
|
20137
|
+
raise __dataclass__FrozenInstanceError(f"cannot assign to field {name!r}")
|
|
20138
|
+
super(__dataclass__cls, self).__setattr__(name, value)
|
|
20139
|
+
|
|
20140
|
+
__setattr__.__qualname__ = f"{__dataclass__cls.__qualname__}.__setattr__"
|
|
20141
|
+
if '__setattr__' in __dataclass__cls.__dict__:
|
|
20142
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __setattr__ in class {__dataclass__cls.__name__}")
|
|
20143
|
+
setattr(__dataclass__cls, '__setattr__', __setattr__)
|
|
20144
|
+
|
|
20145
|
+
__dataclass___delattr_frozen_fields = {
|
|
20146
|
+
'dt',
|
|
20147
|
+
'req',
|
|
20148
|
+
'resp',
|
|
20149
|
+
'exc',
|
|
20150
|
+
'stream_v',
|
|
20151
|
+
}
|
|
20152
|
+
|
|
20153
|
+
def __delattr__(self, name):
|
|
20154
|
+
if (
|
|
20155
|
+
type(self) is __dataclass__cls
|
|
20156
|
+
or name in __dataclass___delattr_frozen_fields
|
|
20157
|
+
):
|
|
20158
|
+
raise __dataclass__FrozenInstanceError(f"cannot delete field {name!r}")
|
|
20159
|
+
super(__dataclass__cls, self).__delattr__(name)
|
|
20160
|
+
|
|
20161
|
+
__delattr__.__qualname__ = f"{__dataclass__cls.__qualname__}.__delattr__"
|
|
20162
|
+
if '__delattr__' in __dataclass__cls.__dict__:
|
|
20163
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __delattr__ in class {__dataclass__cls.__name__}")
|
|
20164
|
+
setattr(__dataclass__cls, '__delattr__', __delattr__)
|
|
20165
|
+
|
|
20166
|
+
def __hash__(self):
|
|
20167
|
+
return hash((
|
|
20168
|
+
self.dt,
|
|
20169
|
+
self.req,
|
|
20170
|
+
self.resp,
|
|
20171
|
+
self.exc,
|
|
20172
|
+
self.stream_v,
|
|
20173
|
+
))
|
|
20174
|
+
|
|
20175
|
+
__hash__.__qualname__ = f"{__dataclass__cls.__qualname__}.__hash__"
|
|
20176
|
+
setattr(__dataclass__cls, '__hash__', __hash__)
|
|
20177
|
+
|
|
20178
|
+
def __init__(
|
|
20179
|
+
self,
|
|
20180
|
+
*,
|
|
20181
|
+
dt: __dataclass__init__fields__0__annotation = __dataclass__HAS_DEFAULT_FACTORY,
|
|
20182
|
+
req: __dataclass__init__fields__1__annotation = __dataclass__init__fields__1__default,
|
|
20183
|
+
resp: __dataclass__init__fields__2__annotation = __dataclass__init__fields__2__default,
|
|
20184
|
+
exc: __dataclass__init__fields__3__annotation = __dataclass__init__fields__3__default,
|
|
20185
|
+
stream_v: __dataclass__init__fields__4__annotation = __dataclass__init__fields__4__default,
|
|
20186
|
+
) -> __dataclass__None:
|
|
20187
|
+
if dt is __dataclass__HAS_DEFAULT_FACTORY:
|
|
20188
|
+
dt = __dataclass__init__fields__0__default_factory()
|
|
20189
|
+
__dataclass__object_setattr(self, 'dt', dt)
|
|
20190
|
+
__dataclass__object_setattr(self, 'req', req)
|
|
20191
|
+
__dataclass__object_setattr(self, 'resp', resp)
|
|
20192
|
+
__dataclass__object_setattr(self, 'exc', exc)
|
|
20193
|
+
__dataclass__object_setattr(self, 'stream_v', stream_v)
|
|
20194
|
+
|
|
20195
|
+
__init__.__qualname__ = f"{__dataclass__cls.__qualname__}.__init__"
|
|
20196
|
+
if '__init__' in __dataclass__cls.__dict__:
|
|
20197
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __init__ in class {__dataclass__cls.__name__}")
|
|
20198
|
+
setattr(__dataclass__cls, '__init__', __init__)
|
|
20199
|
+
|
|
20200
|
+
@__dataclass___recursive_repr()
|
|
20201
|
+
def __repr__(self):
|
|
20202
|
+
parts = []
|
|
20203
|
+
if (s := __dataclass__repr__default_fn(self.dt)) is not None:
|
|
20204
|
+
parts.append(f"dt={s}")
|
|
20205
|
+
if (s := __dataclass__repr__default_fn(self.req)) is not None:
|
|
20206
|
+
parts.append(f"req={s}")
|
|
20207
|
+
if (s := __dataclass__repr__default_fn(self.resp)) is not None:
|
|
20208
|
+
parts.append(f"resp={s}")
|
|
20209
|
+
if (s := __dataclass__repr__default_fn(self.exc)) is not None:
|
|
20210
|
+
parts.append(f"exc={s}")
|
|
20211
|
+
if (s := __dataclass__repr__default_fn(self.stream_v)) is not None:
|
|
20212
|
+
parts.append(f"stream_v={s}")
|
|
20213
|
+
return (
|
|
20214
|
+
f"{self.__class__.__qualname__}("
|
|
20215
|
+
f"{', '.join(parts)}"
|
|
20216
|
+
f")"
|
|
20217
|
+
)
|
|
20218
|
+
|
|
20219
|
+
__repr__.__qualname__ = f"{__dataclass__cls.__qualname__}.__repr__"
|
|
20220
|
+
if '__repr__' in __dataclass__cls.__dict__:
|
|
20221
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __repr__ in class {__dataclass__cls.__name__}")
|
|
20222
|
+
setattr(__dataclass__cls, '__repr__', __repr__)
|
|
20223
|
+
|
|
20224
|
+
return _process_dataclass
|
|
20225
|
+
|
|
20226
|
+
|
|
20227
|
+
@_register(
|
|
20228
|
+
plan_repr=(
|
|
20229
|
+
"Plans(tup=(CopyPlan(fields=()), EqPlan(fields=()), HashPlan(action='set_none', fields=None, cache=None), InitP"
|
|
20230
|
+
"lan(fields=(), self_param='self', std_params=(), kw_only_params=(), frozen=False, slots=False, post_init_param"
|
|
20231
|
+
"s=None, init_fns=(), validate_fns=()), ReprPlan(fields=(), id=False, terse=False, default_fn=None)))"
|
|
20232
|
+
),
|
|
20233
|
+
plan_repr_sha1='71bacd53030a648c2f0136fe3d7d92425681d317',
|
|
20234
|
+
op_ref_idents=(),
|
|
20235
|
+
cls_names=(
|
|
20236
|
+
('ommlds.minichain.wrappers.retry', 'RetryServiceMaxRetriesExceededError'),
|
|
20237
|
+
),
|
|
20238
|
+
)
|
|
20239
|
+
def _process_dataclass__71bacd53030a648c2f0136fe3d7d92425681d317():
|
|
20240
|
+
def _process_dataclass(
|
|
20241
|
+
*,
|
|
20242
|
+
__dataclass__cls,
|
|
20243
|
+
__dataclass__FieldFnValidationError, # noqa
|
|
20244
|
+
__dataclass__FieldTypeValidationError, # noqa
|
|
20245
|
+
__dataclass__FnValidationError, # noqa
|
|
20246
|
+
__dataclass__FrozenInstanceError=dataclasses.FrozenInstanceError, # noqa
|
|
20247
|
+
__dataclass__FunctionType=types.FunctionType, # noqa
|
|
20248
|
+
__dataclass__HAS_DEFAULT_FACTORY=dataclasses._HAS_DEFAULT_FACTORY, # noqa
|
|
20249
|
+
__dataclass__MISSING=dataclasses.MISSING, # noqa
|
|
20250
|
+
__dataclass__None=None, # noqa
|
|
20251
|
+
__dataclass__TypeError=TypeError, # noqa
|
|
20252
|
+
__dataclass___recursive_repr=reprlib.recursive_repr, # noqa
|
|
20253
|
+
__dataclass__isinstance=isinstance, # noqa
|
|
20254
|
+
__dataclass__object_setattr=object.__setattr__, # noqa
|
|
20255
|
+
__dataclass__property=property, # noqa
|
|
20256
|
+
):
|
|
20257
|
+
def __copy__(self):
|
|
20258
|
+
if self.__class__ is not __dataclass__cls:
|
|
20259
|
+
raise TypeError(self)
|
|
20260
|
+
return __dataclass__cls() # noqa
|
|
20261
|
+
|
|
20262
|
+
__copy__.__qualname__ = f"{__dataclass__cls.__qualname__}.__copy__"
|
|
20263
|
+
if '__copy__' in __dataclass__cls.__dict__:
|
|
20264
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __copy__ in class {__dataclass__cls.__name__}")
|
|
20265
|
+
setattr(__dataclass__cls, '__copy__', __copy__)
|
|
20266
|
+
|
|
20267
|
+
def __eq__(self, other):
|
|
20268
|
+
if self is other:
|
|
20269
|
+
return True
|
|
20270
|
+
if self.__class__ is not other.__class__:
|
|
20271
|
+
return NotImplemented
|
|
20272
|
+
return True
|
|
20273
|
+
|
|
20274
|
+
__eq__.__qualname__ = f"{__dataclass__cls.__qualname__}.__eq__"
|
|
20275
|
+
if '__eq__' in __dataclass__cls.__dict__:
|
|
20276
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __eq__ in class {__dataclass__cls.__name__}")
|
|
20277
|
+
setattr(__dataclass__cls, '__eq__', __eq__)
|
|
20278
|
+
|
|
20279
|
+
setattr(__dataclass__cls, '__hash__', None)
|
|
20280
|
+
|
|
20281
|
+
def __init__(
|
|
20282
|
+
self,
|
|
20283
|
+
) -> __dataclass__None:
|
|
20284
|
+
pass
|
|
20285
|
+
|
|
20286
|
+
__init__.__qualname__ = f"{__dataclass__cls.__qualname__}.__init__"
|
|
20287
|
+
if '__init__' in __dataclass__cls.__dict__:
|
|
20288
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __init__ in class {__dataclass__cls.__name__}")
|
|
20289
|
+
setattr(__dataclass__cls, '__init__', __init__)
|
|
20290
|
+
|
|
20291
|
+
@__dataclass___recursive_repr()
|
|
20292
|
+
def __repr__(self):
|
|
20293
|
+
parts = []
|
|
20294
|
+
return (
|
|
20295
|
+
f"{self.__class__.__qualname__}("
|
|
20296
|
+
f"{', '.join(parts)}"
|
|
20297
|
+
f")"
|
|
20298
|
+
)
|
|
20299
|
+
|
|
20300
|
+
__repr__.__qualname__ = f"{__dataclass__cls.__qualname__}.__repr__"
|
|
20301
|
+
if '__repr__' in __dataclass__cls.__dict__:
|
|
20302
|
+
raise __dataclass__TypeError(f"Cannot overwrite attribute __repr__ in class {__dataclass__cls.__name__}")
|
|
20303
|
+
setattr(__dataclass__cls, '__repr__', __repr__)
|
|
20304
|
+
|
|
20305
|
+
return _process_dataclass
|
|
20306
|
+
|
|
20307
|
+
|
|
19907
20308
|
@_register(
|
|
19908
20309
|
plan_repr=(
|
|
19909
20310
|
"Plans(tup=(CopyPlan(fields=('retry_service', 'num_retries')), EqPlan(fields=('retry_service', 'num_retries')),"
|