Tagged Questions
The contextmanager tag has no wiki summary.
8
votes
2answers
273 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 ...
5
votes
1answer
112 views
In python, is there a good idiom for using context managers in setup/teardown
I am finding that I am using plenty of context managers in python, however, I have been testing a number of things using them, and I am often needing the following:
class ...
5
votes
3answers
80 views
Is a context manager right for this job?
The code pasted below does the following:
creates an import hook
creates a context manager which sets the meta_path and cleans on exit.
dumps all the imports done by a program passed in input in ...
3
votes
1answer
97 views
Nesting Python context managers
In this question, I defined a context manager that contains a context manager. What is the easiest correct way to accomplish this nesting? I ended up calling self.temporary_file.__enter__() in ...
2
votes
3answers
98 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
1answer
190 views
How can I mix decorators with the @contextmanager decorator?
Here is the code I'm working with:
from contextlib import contextmanager
from functools import wraps
class with_report_status(object):
def __init__(self, message):
self.message = message
...
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
...
1
vote
1answer
31 views
Use a context manager for python script output to a file?
I'm programming a script where I have an option, to be passed on the command line, whether the script should print its results to stdout or to a predefined results file. A code outline for this is ...
1
vote
4answers
140 views
simplifying threading in python
I am looking for a way to ease my threaded code.
There are a lot of places in my code where I do something like:
for arg in array:
t=Thread(lambda:myFunction(arg))
t.start()
i.e running the ...
1
vote
1answer
183 views
is a decorator in python exactly the same as calling a function on a function?
I thought that doing
@f
def g():
print 'hello'
is exactly the same as
def g():
print 'hello'
g=f(g)
But, I had this code, that uses contextlib.contextmanager:
@contextlib.contextmanager
...