MCPcopy Index your code
hub / github.com/petertodd/python-bitcoinlib / __init__

Method __init__

bitcoin/signature.py:24–27  ·  view source on GitHub ↗
(self, r, s, length)

Source from the content-addressed store, hash-verified

22 __slots__ = ['length', 'r', 's']
23
24 def __init__(self, r, s, length):
25 object.__setattr__(self, 'r', r)
26 object.__setattr__(self, 's', s)
27 object.__setattr__(self, 'length', length)
28
29 @classmethod
30 def stream_deserialize(cls, f):

Callers

nothing calls this directly

Calls 1

__setattr__Method · 0.80

Tested by

no test coverage detected