4
votes
7answers
1k views
The VB.NET ‘With’ Statement - embrace or avoid?
At work, I'm frequently working on projects where numerous properties of certain objects have to be set during their construction or early during their lifetime. For the sake of co …
3
votes
5answers
95 views
Any examples of a non-trivial and useful example of the ‘with’ keyword?
I still find the with keyword a bit...enigmatic.
Briefly, with behaves like this:
with (obj) {
// do stuff
}
This adds obj to the head of the scope chain and then execute …
1
vote
4answers
105 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 …
1
vote
1answer
104 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(filepa …
6
votes
2answers
287 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!'):
…
1
vote
5answers
404 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" …
3
votes
6answers
353 views
Equivalence of “With…End With” in c#?
Hi
I know that c# has using element....but as you know, using disposes object automatically...
clearly, I want the equivalence of with......end with in vb6.0?
Merci
2
votes
3answers
156 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 …
1
vote
6answers
445 views
Reference object instance created using “with” in Delphi
Hi, is there a way to reference an object instance that is created using the "with" statement?
Example:
with TAnObject.Create do
begin
DoSomething(instance);
end;
Where DoSom …
3
votes
1answer
126 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 :
…
0
votes
4answers
441 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:
…
