MCPcopy
hub / github.com/Delgan/loguru / RecordProcess

Class RecordProcess

loguru/_recattrs.py:48–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46
47
48class RecordProcess:
49 __slots__ = ("id", "name")
50
51 def __init__(self, id_, name):
52 self.id = id_
53 self.name = name
54
55 def __repr__(self):
56 return "(id=%r, name=%r)" % (self.id, self.name)
57
58 def __format__(self, spec):
59 return self.id.__format__(spec)
60
61
62class RecordException(

Callers 1

_logMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…