Tagged Questions
The del tag has no wiki summary.
10
votes
2answers
530 views
In Python, is use of `del` statement a code smell?
I tend to use it whenever I am working on a prototype script, and:
Use a somewhat common variable (such as fileCount), and
Have a large method (20+ lines), and
Do not use classes or namespaces yet.
...
9
votes
6answers
456 views
When is del useful in python?
I can't really think of any reason why python needs the del keyword (and most languages seem to not have a similar keyword). For instance, rather than deleting a variable, one could just assign None ...
9
votes
4answers
962 views
How does python close files that have been gc'ed?
I had always assumed that a file would leak if it was opened without being closed, but I just verified that if I enter the following lines of code, the file will close:
>>> f = ...
4
votes
7answers
111 views
Python: Delete all list indices meeting a certain condition
to get right down to it, I'm trying to iterate through a list of coordinate pairs in python and delete all cases where one of the coordinates is negative. For example:
in the array:
map = [[-1, ...
4
votes
4answers
530 views
.NET Simulate Ctrl+Alt+Del Sendkeys
all is said in the title, how can I simulate the combination Ctrl+Alt+DEL?
I tried this:
SendKeys.Send("^(%({DEL}))")
SendKeys.Send("^(%{DEL})")
SendKeys.Send("^%{DEL}")
But none worked. I am ...
4
votes
2answers
471 views
__del__ method being called in python when it is not expected
I am new to python and have been working through the examples in Swaroop CH's "A Byte of Python". I am seeing some behavior with the __del__ method that is puzzling me.
Basically, if I run the ...
3
votes
3answers
86 views
Calling 'del' on a list
class ToBeDeleted:
def __init__(self, value):
self.value = val
# Whatever...
def __del__(self):
print self.value
l = [ToBeDeleted(i) for i in range(3)]
del l
This ...
3
votes
3answers
609 views
Transparent PNG image (with TImageList) in a TMainMenu
I want to load a PNG with transparent background in a TImageList and use it in a TMainMenu (via TAction).
However, in Delphi the background is just black.
The is a way to fix that?
Is PNG support only ...
3
votes
1answer
303 views
deleting multiple keys in redis-rb
Using redis-rb in a Rails app, the following doesn't work:
irb> keys = $redis.keys("autocomplete*")
=> ["autocomplete_foo", "autocomplete_bar", "autocomplete_bat"]
irb> $redis.del(keys)
...
3
votes
1answer
246 views
Python del on classes
Lets assume we have a class in python:
class A(object):
def __del__(self):
print "Del!"
__del__ is called upon deleting/garbage collection of any A instance.
Is is possible to do the ...
2
votes
5answers
376 views
I don't understand this python __del__ behaviour
Can someone explain why the following code behaves the way it does:
import types
class Dummy():
def __init__(self, name):
self.name = name
def __del__(self):
print ...
2
votes
3answers
221 views
Python: Removing a single element from a nested list
I'm having trouble figuring out how to remove something from within a nested list.
For example, how would I remove 'x' from the below list?
lst = [['x',6,5,4],[4,5,6]]
I tried del lst[0][0], but I ...
2
votes
2answers
438 views
Eclipse+Pydev: “cleanup” functions aren't called when pressing “stop”"?
Trying to run this file in eclipse
class Try:
def __init__(self):
pass
def __del__(self):
print 1
a=Try()
raw_input('waiting to finish')
and pressing the stop button without ...
1
vote
2answers
35 views
Unable to reference an imported module in __del__()
I'm using an object's __del__() to unsubscribe it from an event (using an event scheme similar to this):
import my_enviroment
class MyClass():
def __del__(self):
...
1
vote
1answer
50 views
Delete field from standard Django model
Basically I would like to delete the default email field from the default Django User class...
class MyUser(User):
field = models.CharField(max_length = 10)
a = 'hello'
def b(self):
...
1
vote
2answers
59 views
BATCH - for loop: Why only the last file is processed?
@echo on
set src=c:\test
set dst=d:\test
xcopy %src% %dst%
for /F "TOKENS=*" %%G in ('dir/b ^%src%\*.*^') DO set new=%%G
attrib +h "%dst%\%new%"
del "%dst%"
attrib -h "%dst%\%new%"
pause
...
1
vote
1answer
42 views
delete temp internet files excetp those with extentions
I’m the AutoCAD IT guy at work, because our windows IT guys always facebooking and e-baying my manager has complained he’s temp folders are too full. Because I'm always researching and listing (and ...
1
vote
4answers
106 views
Deleting attributes when deleting instance
class A:
def __get(self):
return self._x
def __set(self, y):
self._x = y
def __delete_x(self):
print('DELETING')
del self._x
x = property(__get,__set,__delete_x)
b = A()
# Here, when ...
0
votes
1answer
73 views
Before syncdb, delete field from standard Django model
This is a follow-up question on Delete field from standard Django model. In short: a field can be dynamically deleted from a model that is already created, in this case the field User.email . So field ...
0
votes
0answers
28 views
batch to fillter out duplicates in seperate directorys
I have two folders two different locations with a bunch of automatically generated (generated through install and repair/ reset) files in them.
Occasionally what happens is that a file of a ...
0
votes
2answers
47 views
Delete some files using batch files
I must create batch file to delete files of a directory wich names first simbols are "a". How can i do it?
0
votes
2answers
47 views
delete all files execpt
I have a folder with a few files in it; I like to keep my folder clean of any stray files that can end up in it. Such stray files may include automatically generated backup files or log files, but ...
0
votes
3answers
80 views
How to debug uncalled __del__()
I use __del__() to write a warning log in case the object gets deleted while in a wrong internal state (please no wrath about it).
I tried to test it but although I use del my_object in the test, the ...
0
votes
4answers
94 views
Save state in file on cleanup using __del__?
I have a class that looks like this:
class A:
def __init__(self, filename, sources):
# gather info from file
# info is updated during lifetime of the object
def close(self):
...
0
votes
0answers
60 views
Delete files in specific folder in many folder (Loop) Batch
I need a script that scans folders and set every folder name in a variable, one by one.
What I mean:
I have this share \servername\share\ with contains these folders
Folder1
Folder2
Folder3
Folder4
...
0
votes
2answers
186 views
How do I override PySerial's “__del__” method in Python?
I have a simple Python script set up to send Characters to a device on COM3.
(This is running on Windows XP)
The device receives the Characters fine, but when the script ends, or I call
ser.close() ...
0
votes
1answer
85 views
Wildcard with cmd files help
I am currently using this statement:
for /d %%X in (C:\Users*) do (del %%X\Desktop\deleteme.txt )
Although I would like to use the "%%X" in to parts of this statement
e.g.
del ...
0
votes
1answer
202 views
Using PyFlakes and the del operator
When making use of del in a Python function, I'm getting false positives from PyFlakes telling me that the variable is undefined.
def foo(bar):
# what if it's ham? eww
if bar == 'ham':
...
0
votes
0answers
51 views
why retain of delegate is wrong what are all alternatives…?
I have one problem let assume A and B are 2 view controller from A user push to B view controller,In B user starts some download by creating object C(which is NSObject class) and sets B as delegate to ...
0
votes
3answers
645 views
sys.getrefcount continuation
link text
I got the concept of reference count
So when i do a "del astrd" ,reference count drops to zero and astrd gets collected by gc ?
This is the sample codes.These codes I developed after my ...