Tagged Questions

8
votes
2answers
272 views

python: create a “with” block on several context managers

Suppose you have three objects you acquire via context manager, for instance A lock, a db connection and an ip socket. You can acquire them by: with lock: with db_con: with socket: ...
8
votes
2answers
537 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
97 views

Disposing of objects with circular references

My design is as follows: __main__ references a a references b b references a a is created and then disposed of from __main__ Thus a and b have circular references. However upon del a I would ...
2
votes
3answers
221 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 ...