Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ writer
Function
writer
extra_tests/snippets/syntax_generator.py:115–122 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
113
l = []
114
115
def
writer():
116
while
True:
117
try
:
118
w = (
yield
)
119
except
SpamException:
120
l.append(
'***'
)
121
else
:
122
l.append(f
'>> {w}'
)
123
124
def
wrapper(coro):
125
yield
from
coro
Callers
5
syntax_generator.py
File · 0.70
__init__
Method · 0.50
test_only_one_bom
Method · 0.50
test_only_one_bom
Method · 0.50
write
Method · 0.50
Calls
1
append
Method · 0.45
Tested by
3
test_only_one_bom
Method · 0.40
test_only_one_bom
Method · 0.40
write
Method · 0.40