6
votes
2answers
290 views
Finding Functions Defined in a with: Block
Here's some code from Richard Jones' Blog:
with gui.vertical:
text = gui.label('hello!')
items = gui.selection(['one', 'two', 'three'])
with gui.button('click me!'):
def …
2
votes
3answers
157 views
How should I return interesting values from a with-statement?
Is there a better way than using globals to get interesting values from a context manager?
@contextmanager
def transaction():
global successCount
global errorCount
try:
yield
…
