Tagged Questions
The with-statement tag has no wiki summary.
109
votes
23answers
26k views
Are there legitimate uses for JavaScript's “with” statement?
Alan Storm's comments in response to my answer regarding the with statement got me thinking. I've seldom found a reason to use this particular language feature, and had never given much thought to how ...
23
votes
8answers
972 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 ...
14
votes
7answers
10k 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 convenience and ...
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
210 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 ...
9
votes
12answers
3k views
Is Delphi “with” keyword a bad practice?
I been reading bad things about the with keyword in delphi but, in my opinion, if you don't over use it. It can make your code look simple.
I often put all my TClientDataSets and TFields in ...
9
votes
16answers
1k views
What's wrong with Delphi's “with”
I've heard many programmers, particularly Delphi programmers scorn the use of 'with'.
I thought it made programs run faster (only one reference to parent object) and that it was easier to read the ...
8
votes
2answers
290 views
What is the difference between ECMAScript Harmony's let statement and a similar with statement?
Does ECMAScript Harmony's let statement behave any different from using a with statement with the equivalent object literal?
Example
using let statement
var x = 10;
let (x = x * 10,
y = x + 5) ...
8
votes
1answer
174 views
Is there any research on (or better use of) of RAII in GC languages?
Note: Object Lifetime RAII not using/with block scope RAII
It seems like its possible using an extra gc category, short lived objects(check gc category somewhat frequently), long lived objects(check ...
8
votes
3answers
998 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
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 ...
8
votes
7answers
1k views
Why is the with() construct not included in C#, when it is really cool in VB.NET?
I am C# developer. I really love the curly brace because I came from C, C++ and Java background. However, I also like the other programming languages of the .NET Family such as VB.NET. Switching back ...
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
4answers
203 views
C#: how to define an extension method as “with” in F#?
F# has a convenient feature "with", example:
type Product = { Name:string; Price:int };;
let p = { Name="Test"; Price=42; };;
let p2 = { p with Name="Test2" };;
F# created keyword ...
7
votes
3answers
327 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
5answers
320 views
Any Resources/Tutorials on using nested “With” statements in Delphi?
I am trying to come to grips with using with statements in delphi properly.
Overall it seems fairly simple to do simple things with but I am interested in finding some good code examples and/or ...
5
votes
4answers
557 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
606 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 ...
5
votes
4answers
946 views
Javascript Sandbox
I want to have developers write some custom apps for a site in Javascript but I want to sandbox it so they can't do anything naughty like redirect the user, set the body display to none etc etc. I ...
4
votes
1answer
109 views
Why doesn't with…do statement and rectangle work together flawlessly?
Lately, I have been noticing that anytime I use Rectangle variable with With...do statement, it doesn't work at all for some reason.
For instance:
var bounds:=new Rectangle(0,0,0,0);
with bounds do
...
4
votes
1answer
81 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
1answer
183 views
How does name resolution work in compound “with” statements?
Which instance of Ready gets tested in the following code, and why?
interface
type
TObject1 = class
...
public
property Ready: boolean read FReady write FReady;
end;
TObject2 = class
...
4
votes
4answers
401 views
Is this the best way to do a “with” statement in C++?
Edit:
So this question was misinterpreted to such a ludicrous degree that it has no point anymore. I don't know how, since the question that I actually asked was whether my specific implementation of ...
4
votes
4answers
326 views
How come eval doesn't have access to the scoped variables under a with statement?
Why can't you access scoped variables using eval under a with statement?
For example:
(function (obj) {
with (obj) {
console.log(a); // prints out obj.a
eval("console.log(a)"); // ...
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
5answers
188 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 executes the with-block. ...
4
votes
2answers
322 views
Delphi: Since when are interface references no longer released at the end of a with-block?
I recently stumbled over a problem caused by some very old code I wrote which was obviously assuming that interface references used in a with statement would be released as soon as the with-block is ...
4
votes
5answers
293 views
Delphi 2009 Handling of With
Anybody know what is different about Delphi 2009's handling of "with"?
I fixed a problem yesterday just by deconstructing "with" to full references, as in "with Datamodule, Dataset, MainForm". ...
4
votes
8answers
5k 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
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
110 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
926 views
Oracle SQL insert into with With clause
I'm new to sql, so maybe it is a dumb question, but is there any possibility to use With clause with Insert Into? Or are there any common workarounds? I mean something like this:
With helper_table As ...
3
votes
3answers
180 views
Converting sql statement that contains 'with' cte to linq
Hey, I have this piece of code here, been battling with it for hours. basically what this sql statement does is gets ALL subfolders of a specified folder (@compositeId).
WITH auto_table (id, Name, ...
3
votes
1answer
146 views
SQL - With statement in WHERE claue
HI,
Does a WITH state can live in a WHERE clause?
for instance:
SELECT tbl1.name , tbl1.ID
FROM DBTABLE0001 AS tbl1
WHERE (
exists(
WITH H (super, ID, depth) AS
(
...
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
11answers
1k views
Does C++ have “with” keyword like Pascal?
with keyword in Pascal can be use to quick access the field of a record.
Anybody knows if C++ has anything similar to that?
Ex:
I have a pointer with many fields and i don't want to type like this:
...
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
69 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
2answers
75 views
in postgres, SQL guidance on using the WITH clause
I understand how to use the WITH clause for recursive queries (!!), but I'm having problems understanding its general use / power.
For example the following query updates one record whose id is ...
2
votes
1answer
50 views
With statement in php
I am wondering if there is something similar to javascript or VB's with statement but in php
The way this works, for example in VB is shown below. The two code snippets do the same effect:
...
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
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
2answers
51 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
1answer
109 views
Equivalent of with(from Pascal) to C/C++
What is the equivalent of with from Pascal language in C/C++ language?
A with statement is a shorthand for referencing the fields of a record or the fields, properties, and methods of an object.
...
2
votes
2answers
82 views
change JavaScript scope
Is there any posibility to exchange the special global window scope by a custom one? I just thought with is meant to, but it only stacks another "lookup" scope. Eg.
test={};
with(test){
a=1;
}
...
2
votes
2answers
92 views
Exiting from a VB.NET With block
In the following block of code, does VB.NET gracefully exit the With block if Var1 = 2?
With MyObject
.Property1 = "test"
If Var1 = 2 Then
Return True
End If
.Property2 = ...
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):
...