Tagged Questions
23
votes
8answers
971 views
What is the python “with” statement designed for?
I came across the Python with statement for the first time today. I've been using Python lightly for several months and didn't even know of its existence! Given its somewhat obscure status, I ...
13
votes
5answers
4k views
Multiple variables in Python 'with' statement
Is it possible to declare more than one variable using a with statement in Python?
Something like:
from __future__ import with_statement
with open("out.txt","wt"), open("in.txt") as file_out, ...
11
votes
3answers
1k views
How do I mock an open used in a with statement (using the Mock framework in Python)?
How do I test the following code with mocks (using mocks, the patch decorator and sentinels provided by Michael Foord's Mock framework):
def testme(filepath):
with open(filepath, 'r') as f:
...
10
votes
4answers
206 views
Opening multiple (an unspecified number) of files at once and ensuring they are correctly closed
I am aware that I can open multiple files with something like,
with open('a', 'rb') as a, open('b', 'rb') as b:
But I have a situation where I have a list of files to open and am wondering what the ...
8
votes
3answers
989 views
Using python “with” statement with try-except block
Is this the right way to use the python "with" statement in combination with a try-except block?:
try:
with open("file", "r") as f:
line = f.readline()
except IOError:
...
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 ...
7
votes
2answers
86 views
What things to be aware of when using the with-statement for own classes?
I am planning to implement C++-like constructor/destructor functionality to one of my Python classes using the handy with statement. I've come accross this statement only for file IO up to now, but I ...
7
votes
3answers
325 views
What's the advantage of using 'with .. as' statement in Python?
with open("hello.txt", "wb") as f:
f.write("Hello Python!\n")
seems to be the same as
f = open("hello.txt", "wb")
f.write("Hello Python!\n")
f.close()
What's the advantage of using open .. ...
5
votes
4answers
552 views
RAII in Python - automatic destruction when leaving a scope
I've been trying to find RAII in Python.
Resource Allocation Is Initialization is a pattern in C++ whereby
an object is initialized as it is created. If it fails, then it throws
an exception. In this ...
5
votes
3answers
601 views
python's `with` statement
seems like I do not understand something with---the python with statement.
Consider this class:
class test(object):
def __enter__(self): pass
def __exit__(self, *ignored): pass
now, when ...
4
votes
1answer
78 views
how to use python closing context manager
The standard library open function works both as a function:
f = open('file.txt')
print(type(f))
<type 'file'>
or as a context manager:
with open('file.txt') as f:
print(type(f))
...
4
votes
7answers
376 views
Python: defining new functions on the fly using “with”
I want to convert the following code:
...
urls = [many urls]
links = []
funcs = []
for url in urls:
func = getFunc(url, links)
funcs.append(func)
...
def getFunc(url, links):
def func():
...
4
votes
1answer
263 views
problem using an instance in a with_statement
I've recently started to learn python , and I reached the with statement . I've tried to use it with a class instance , but I think I'm doing something wrong . Here is the code :
from __future__ ...
3
votes
3answers
109 views
How “with” is better than try/catch to open a file in Python?
I got that the with statement help you to turn this:
try:
f = open(my_file)
do_stuff_that_fails()
except:
pass
finally:
f.close()
Into:
with open(my_file) as f:
...
3
votes
3answers
59 views
How to give with-statement-like functionality to class?
[I apologize for the inept title; I could not come up with anything better. Suggestions for a better title are welcome.]
I want to implement an interface to HDF5 files that supports ...
3
votes
3answers
113 views
Closing files in Python
In this discussion about the easiest way to run a process and discard its output, I suggested the following code:
with open('/dev/null', 'w') as dev_null:
subprocess.call(['command'], ...
3
votes
5answers
1k views
Using “with” statement for CSV files in Python
Is it possible to use the with statement directly with CSV files? It seems natural to be able to do something like this:
import csv
with csv.reader(open("myfile.csv")) as reader:
# do things with ...
2
votes
1answer
68 views
Good Python with statement explanation [closed]
I've tried google and other places but I can't seem to find a good explanation of the with statement. In what situations is it useful? I get how it works with files but how else could it be used?
2
votes
3answers
124 views
Python 2.5.2- what was instead of 'with' statement
I wrote my code for python 2.7 but the server has 2.5. How do i rewrite the next code so it will run in python 2.5.2:
gzipHandler = gzip.open(gzipFile)
try:
with open(txtFile, 'w') as out:
...
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
2answers
50 views
Facing “MemoryError” while doing multithread txt file I/Os, looking for better solution
I'm working with only one txt file which is about 4 MB, and the file needs frequently I/O such as append new lines/search for certain lines which includes specific phrases/replace certain line with ...
2
votes
2answers
139 views
pass argument to __enter__
Just learning about with statements especially from this article
question is, can I pass an argument to __enter__?
I have code like this:
class clippy_runner:
def __enter__(self):
...
2
votes
4answers
104 views
python: Is there a way to get the code inside the with statement
I was hoping this would work:
class A:
def __enter__(self, code):
print code
def __exit__(..):
pass
and then:
with A():
f()
g()
would print:
f()
g()
Specifically, ...
2
votes
6answers
263 views
equivalent of Python's “with” in Ruby
In Python, the with statement is used to make sure that clean-up code always gets called, regardless of exceptions being thrown or function calls returning. For example:
with open("temp.txt", "w") as ...
2
votes
3answers
75 views
Implementing use of 'with object() as f' in custom class in python
I have to open a file-like object in python (it's a serial connection through /dev/) and then close it. This is done several times in several methods of my class. How I WAS doing it was opening the ...
2
votes
5answers
458 views
Improvizing a drop-in replacement for the “with” statement for Python 2.4
Can you suggest a way to code a drop-in replacement for the "with" statement that will work in Python 2.4?
It would be a hack, but it would allow me to port my project to Python 2.4 more nicely.
...
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
4answers
104 views
Python with statements
I'm experimenting with Python's with statements, and I've found that in the following code listing my __init__ method gets called twice, while my __exit__ method gets called once. This presumably ...
1
vote
1answer
71 views
Pygame: <Surface: (Dead Display)> and Python's “with statement”
So I'm developing a game using Pygame and trying to abstract away a lot of the code. In the process though, I'm getting some weird errors. Namely, when I run main.py, I get this trace:
>>>
...
1
vote
4answers
215 views
Python 3.2 “with/as” not working
I'm learning Python, and I'm trying out the with **** as ****: statement. I figure it works much like C#'s using(****) {, but I'm afraid I'm following outdated examples.
This is my code:
# -*- ...
1
vote
1answer
165 views
Catching an exception while using a Python 'with' statement - Part 2
this is a continuation of question Catching an exception while using a Python 'with' statement.
I'm quite e newbie and I tested the following code with Python 3.2 on GNU/linux.
In the above-mentioned ...
1
vote
4answers
309 views
Python Conditional “With” Lock Design
Quick question, hopefully...
I am trying to do some shared locking using with statements
def someMethod(self, hasLock = False):
with self.my_lock:
self.somethingElse(hasLock=True)
...
1
vote
1answer
99 views
distinct classes using `with` in Python
If you have the following class:
class Foo(object):
def __init__(name):
self.name = name
And you use it like this in a file called check_foo.py
with Foo("naming it"):
print ...
1
vote
1answer
90 views
Can I write a function that detect if it is called from 'with'-statement or not?
More specifically, can I detect if a function is called as EXPR in with EXPR: BLOCK statement?
I am trying to make myself familiar with the usage of with-statement in python. As a first step, I ...
1
vote
1answer
170 views
Python with statement - is there a need for old-style file handling any more?
With having the with statement, is there ever a need to open a file/check for exceptions/do manual closing of resources, like in
try:
f = open('myfile.txt')
for line in f:
print line
except ...
1
vote
4answers
274 views
How to make a class that acts like a string?
I have a context manager that captures output to a string for a block of code indented under a with statement. This context manager yields a custom result object which will, when the block has ...
1
vote
1answer
199 views
Dealing with context classes in Python 2.4
I'm trying to use the python-daemon module. It supplies the daemon.DaemonContext class to properly daemonize a script. Although I'm primarily targeting Python 2.6+, I'd like to maintain backwards ...
1
vote
4answers
177 views
Nesting 'WITH' statements in Python
Turns out with is a funny word to search for on the internet.
Does anyone knows what the deal is with nesting with statements in python?
I've been tracking down a very slippery bug in a script I've ...
1
vote
3answers
754 views
with statement - backport for Python 2.5
I'd like to use with statement in Python 2.5 in some production code. It was backported, should I expect any problems (e.g. with availability/compatibility on other machines/etc)?
Is this code
from ...
0
votes
2answers
89 views
How to handle exceptions in python using the `with` statement in python?
Assuming this piece of code:
connection = get_some_connection() # maybe from oursql
with connection.cursor() as cursor:
cursor.execute('some query')
I understand that after finishing ...
0
votes
2answers
76 views
'With' in pre python 2.5
Is there a means of converting a python 'with' statement into a format that can be used in previous versions of python. 4 month's work hinging on this question. with are there to be more efficient ...
0
votes
2answers
78 views
Problem using the with-statement
Why doesn`t this work:
class X:
var1 = 1
def __enter__(self): pass
def __exit__(self, type, value, traceback): pass
class Y:
x = X()
y = Y()
with y.x as z:
print z.var1
I get:
...
0
votes
2answers
252 views
Can I use python with statement for conditional execution?
I'm trying to write code that supports the following semantics:
with scope('action_name') as s:
do_something()
...
do_some_other_stuff()
The scope, among other things (setup, cleanup) should ...
0
votes
1answer
39 views
Operating on a file's content despite a failure in the 'with' block
I've just written a utility in Python to do something I need (irrelevant, but it's to generate a ctags-compatible tag file for an in-house DSL).
Anyway- I'm opening and reading the file in the ...
0
votes
4answers
267 views
How can I conditionally execute code in a “with” block?
I guess this is kinda abusing the feature, but I'm still curious whether it could be done -
I want to do something like:
with conditional(a):
print 1
so that the print 1 part is executed only ...