@@ -46,7 +46,7 @@ <h1 class="title">Module <code>raffiot.untyped.utils</code></h1>
46
46
47
47
@dataclass
48
48
class TracedException:
49
- __slots__ = [ "exception", "stack_trace"]
49
+ __slots__ = ( "exception", "stack_trace")
50
50
51
51
exception: None
52
52
"""
@@ -103,8 +103,6 @@ <h1 class="title">Module <code>raffiot.untyped.utils</code></h1>
103
103
Exception for pattern matching errors (used internally, should NEVER happen).
104
104
"""
105
105
106
- __slots__ = "message"
107
-
108
106
message: None
109
107
110
108
@@ -114,8 +112,6 @@ <h1 class="title">Module <code>raffiot.untyped.utils</code></h1>
114
112
Represents
115
113
"""
116
114
117
- __slots__ = "exceptions", "errors"
118
-
119
115
exceptions: None
120
116
"""
121
117
The list exceptions encountered
@@ -171,8 +167,6 @@ <h1 class="title">Module <code>raffiot.untyped.utils</code></h1>
171
167
Errors from the business domain
172
168
"""
173
169
174
- __slots__ = "error"
175
-
176
170
errors: None
177
171
178
172
@@ -279,8 +273,6 @@ <h3>Class variables</h3>
279
273
Errors from the business domain
280
274
"""
281
275
282
- __slots__ = "error"
283
-
284
276
errors: None</ code > </ pre >
285
277
</ details >
286
278
< h3 > Ancestors</ h3 >
@@ -295,13 +287,6 @@ <h3>Class variables</h3>
295
287
< div class ="desc "> </ div >
296
288
</ dd >
297
289
</ dl >
298
- < h3 > Instance variables</ h3 >
299
- < dl >
300
- < dt id ="raffiot.untyped.utils.DomainErrors.error "> < code class ="name "> var < span class ="ident "> error</ span > </ code > </ dt >
301
- < dd >
302
- < div class ="desc "> < p > Return an attribute of instance, which is of type owner.</ p > </ div >
303
- </ dd >
304
- </ dl >
305
290
</ dd >
306
291
< dt id ="raffiot.untyped.utils.MatchError "> < code class ="flex name class ">
307
292
< span > class < span class ="ident "> MatchError</ span > </ span >
@@ -319,20 +304,18 @@ <h3>Instance variables</h3>
319
304
Exception for pattern matching errors (used internally, should NEVER happen).
320
305
"""
321
306
322
- __slots__ = "message"
323
-
324
307
message: None</ code > </ pre >
325
308
</ details >
326
309
< h3 > Ancestors</ h3 >
327
310
< ul class ="hlist ">
328
311
< li > builtins.Exception</ li >
329
312
< li > builtins.BaseException</ li >
330
313
</ ul >
331
- < h3 > Instance variables</ h3 >
314
+ < h3 > Class variables</ h3 >
332
315
< dl >
333
316
< dt id ="raffiot.untyped.utils.MatchError.message "> < code class ="name "> var < span class ="ident "> message</ span > : NoneType</ code > </ dt >
334
317
< dd >
335
- < div class ="desc "> < p > Return an attribute of instance, which is of type owner. </ p > < /div >
318
+ < div class ="desc "> </ div >
336
319
</ dd >
337
320
</ dl >
338
321
</ dd >
@@ -352,8 +335,6 @@ <h3>Instance variables</h3>
352
335
Represents
353
336
"""
354
337
355
- __slots__ = "exceptions", "errors"
356
-
357
338
exceptions: None
358
339
"""
359
340
The list exceptions encountered
@@ -407,6 +388,17 @@ <h3>Ancestors</h3>
407
388
< li > builtins.Exception</ li >
408
389
< li > builtins.BaseException</ li >
409
390
</ ul >
391
+ < h3 > Class variables</ h3 >
392
+ < dl >
393
+ < dt id ="raffiot.untyped.utils.MultipleExceptions.errors "> < code class ="name "> var < span class ="ident "> errors</ span > : NoneType</ code > </ dt >
394
+ < dd >
395
+ < div class ="desc "> < p > The list of errors encountered</ p > </ div >
396
+ </ dd >
397
+ < dt id ="raffiot.untyped.utils.MultipleExceptions.exceptions "> < code class ="name "> var < span class ="ident "> exceptions</ span > : NoneType</ code > </ dt >
398
+ < dd >
399
+ < div class ="desc "> < p > The list exceptions encountered</ p > </ div >
400
+ </ dd >
401
+ </ dl >
410
402
< h3 > Static methods</ h3 >
411
403
< dl >
412
404
< dt id ="raffiot.untyped.utils.MultipleExceptions.merge "> < code class ="name flex ">
@@ -455,17 +447,6 @@ <h3>Static methods</h3>
455
447
</ details >
456
448
</ dd >
457
449
</ dl >
458
- < h3 > Instance variables</ h3 >
459
- < dl >
460
- < dt id ="raffiot.untyped.utils.MultipleExceptions.errors "> < code class ="name "> var < span class ="ident "> errors</ span > : NoneType</ code > </ dt >
461
- < dd >
462
- < div class ="desc "> < p > The list of errors encountered</ p > </ div >
463
- </ dd >
464
- < dt id ="raffiot.untyped.utils.MultipleExceptions.exceptions "> < code class ="name "> var < span class ="ident "> exceptions</ span > : NoneType</ code > </ dt >
465
- < dd >
466
- < div class ="desc "> < p > The list exceptions encountered</ p > </ div >
467
- </ dd >
468
- </ dl >
469
450
</ dd >
470
451
< dt id ="raffiot.untyped.utils.TracedException "> < code class ="flex name class ">
471
452
< span > class < span class ="ident "> TracedException</ span > </ span >
@@ -479,7 +460,7 @@ <h3>Instance variables</h3>
479
460
</ summary >
480
461
< pre > < code class ="python "> @dataclass
481
462
class TracedException:
482
- __slots__ = [ "exception", "stack_trace"]
463
+ __slots__ = ( "exception", "stack_trace")
483
464
484
465
exception: None
485
466
"""
@@ -656,7 +637,6 @@ <h4><code><a title="raffiot.untyped.utils.ComputationStatus" href="#raffiot.unty
656
637
< li >
657
638
< h4 > < code > < a title ="raffiot.untyped.utils.DomainErrors " href ="#raffiot.untyped.utils.DomainErrors "> DomainErrors</ a > </ code > </ h4 >
658
639
< ul class ="">
659
- < li > < code > < a title ="raffiot.untyped.utils.DomainErrors.error " href ="#raffiot.untyped.utils.DomainErrors.error "> error</ a > </ code > </ li >
660
640
< li > < code > < a title ="raffiot.untyped.utils.DomainErrors.errors " href ="#raffiot.untyped.utils.DomainErrors.errors "> errors</ a > </ code > </ li >
661
641
</ ul >
662
642
</ li >
0 commit comments