Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/petertodd/python-bitcoinlib
/ __repr__
Method
__repr__
bitcoin/core/script.py:828–829 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
826
return
iter(self.stack)
827
828
def
__repr__(self):
829
return
'CScriptWitness('
+
','
.join(
"x('%s')"
% bitcoin.core.b2x(s)
for
s in self.stack) +
')'
830
831
def
is_null(self):
832
return
len(self.stack) == 0
Callers
nothing calls this directly
Calls
1
join
Method · 0.80
Tested by
no test coverage detected