Tagged Questions
2
votes
1answer
85 views
Python program eating up RAM
I wrote a small program to collect data over serial port using MinimalModbus. The data is dumped into a CSV file. I have read several posts on SO and other places. A few things mentioned are:
Using ...
0
votes
1answer
33 views
Python: find which objects are marked for deletion by gc?
Let's say that I get following output from gc.get_count()
gc.get_count()
(2, 1, 0)
What I want to know is that which are these three objects that gc.get_count() is counting? Can I get their id? ...
2
votes
1answer
45 views
Python: cracking the gc enigma
I am trying to understand gc because I have got a large list in a program which I need to delete to free up some badly needed memory. The basic question I want to answer is how can I find what is ...
2
votes
1answer
35 views
Memory leak / Python windows 7 screenshots
I have tried the following Python code on a dual monitor system (Windows7) to repeatedly save screenshots.
It generates 33 shots of 14.6MB (total 482MB) and then crash. Checking with Process Explorer ...
1
vote
1answer
33 views
Garbage Collection using Django's Session Middleware
NOTE: Sorry, but I don't have the required reputation score to post more then two links. The snippets posted below reference the following views and supporting class' __del__() method.
I have a ...
1
vote
1answer
70 views
Why is memory usage increasing in this python code?
I'm sure this is a naive question about python and garbage collection.
I have a function that creates a large data structure in memory, and then returns an integer.
I expected that after calling the ...
0
votes
0answers
23 views
Does `gc` know referrers to the objects it does not track?
How does gc manage to provide referrers for 'a' or for obj even though it says it doesn't track them?
And if the knowledge of referrers is independent of tracking, then why does it not provide ...
1
vote
1answer
28 views
Finding qualified names that reference a given object
For debugging purposes, we want to obtain all the names under which a given object is known; I want qualified names (i.e., A.x rather than x). Here's our first attempt:
import gc, sys
def ...
5
votes
1answer
52 views
How do I prevent memory leak when I load large pickle files in a for loop?
I have 50 pickle files that are 0.5 GB each.
Each pickle file is comprised of a list of custom class objects.
I have no trouble loading the files individually using
the following function:
def ...
0
votes
1answer
19 views
Python objects returned more than once by gc.get_referents()
I'm using gc module (Python 2.7.3 on Ubuntu 12.10) to analyze object references.
Starting with the following code:
a = [1,2,3]
b = [1,2,3,4,5]
print(gc.get_referents(a,b))
Obtaining the result:
...
8
votes
2answers
120 views
python efficiency and large objects in memory
i have a multiple processes each dealing with lists that have 40000 tuples. this nearly maxes the memory available on the machine. if i do this:
while len(collection) > 0:
row ...
1
vote
2answers
76 views
Garbage collect a class with a reference to its instance?
Consider this code snippet:
import gc
from weakref import ref
def leak_class(create_ref):
class Foo(object):
# make cycle non-garbage collectable
def __del__(self):
...
4
votes
3answers
98 views
Will a Python generator be garbage collected if it will not be used any more but hasn't reached StopIteration yet?
When a generator is not used any more, it should be garbage collected, right? I tried the following code but I am not sure which part I was wrong.
import weakref
import gc
def countdown(n):
...
10
votes
2answers
291 views
Memory leak when using strings < 128KB in Python?
Original title: Memory leak opening files < 128KB in Python?
Original question
I see what I think is a memory leak when running my Python script. Here is my script:
import sys
import time
...
1
vote
2answers
94 views
Python: how to garbage collect strings
I'm having a problem in a large-runtime script. This script is a multithreaded environment, to perform crawling tasks.
In large executions, script's memory consumption become huge, and after ...
3
votes
2answers
93 views
Python del statement
Calling del on a variable in Python. Does this free the allocated memory immediately or still waiting for garbage collector to collect? Like in java, explicitly calling del has no effect on when the ...
-1
votes
3answers
95 views
Deleting elements of a python list during iteration
I have a very large list on each element of which I have to do many operations. Essentially, each element of the list is appended to in various ways and then used to generate an object. These ...
0
votes
1answer
58 views
Why do circular references prevent the destructors of objects that aren't on the loop?
In this example:
class Foo(object):
def __del__(self):
print "Foo died"
class Bar(object):
def __init__(self):
self.foo = Foo()
self.baz = Baz(self)
class ...
3
votes
1answer
46 views
Behaviour of __subclasses__ when classes are deleted
Edit: Generalised the question due to NPE's comment.
In a Python 2.7.3 interactive session:
>>> class Foo(object):
... pass
...
>>> type("Bar", (Foo,), {})
<class ...
0
votes
1answer
110 views
memory leak, size of objects tracked by gc is far less than memory usage of process
Our object is a big system.
As we know there must be some memory leak in it by now. But it is so difficult to find the reason. Everytime memory used by the process reaches gigabytes, the response of ...
3
votes
1answer
95 views
Exiting Python interpreter without running garbage collection
At the end of my program, where nothing really needs to happen, the CPython 3.2 interpreter spends almost 2 minutes doing garbage collection. It is a known issue.
Luckily, in my case, I don't need to ...
1
vote
1answer
223 views
Unpack requires a string argument of length 44 python
I have while loop for get packets
unpackedData = struct.unpack("!BBHHHBBH4s4sHH4s4s4sHH4s", data[:44])
this line throws exception
Unpack requires a string argument of length 44 python
But ...
2
votes
3answers
107 views
When are python objects candidates for garbage collection?
I am trying to figure out when exactly a python object is a candidate for garbage collection. I have read through a few documents/posts and have been unable to find a definite answer.
Take for ...
4
votes
2answers
49 views
In python does importing a new module under the same alias allow for the previously assigned module to be picked up by garbage collection?
Does this code, or similar, allow for 'something' to be picked up by garbage collection after it has been dereferenced?
import something as this
if condition:
import somethingelse as this
I ...
7
votes
1answer
81 views
Object deletes reference to self
Does Python interpreter gracefully handles cases where an object instance deletes the last reference to itself?
Consider the following (admittedly useless) module:
all_instances = []
class ...
5
votes
1answer
170 views
What can cause a memory leak in python? [duplicate]
Possible Duplicate:
Python: Is it possible to have an actual memory leak in Python because of your code?
Since the python garbage collector handles detection of circular references (object ...
1
vote
0answers
100 views
Python3 method call returns None despite an explicit return of a new class instance
It's my first post so please go easy on me. Not too easy, of course ;)
Anyway, I'm using Python 3.2.3 to write a text adventure game. There is a class Labyrinth that holds a collection of Location ...
0
votes
2answers
103 views
Python ordered garbage collectible dictionary?
I want my Python program to be deterministic, so I have been using OrderedDicts extensively throughout the code. Unfortunately, while debugging memory leaks today, I discovered that OrderedDicts have ...
2
votes
2answers
380 views
Reducing numpy memory footprint in long-running application
In my application one hundred numpy arrays (1000 complex elements each) are generated and filled with data. Then over many iterations, the array elements are modified over and over again. After the ...
0
votes
1answer
89 views
Multiple objects somehow interfering with each other [original version]
I have a neural network (NN) which works perfectly when applied to a single data set. However if I want to run the NN on, for example, one set of data and then create a new instance of the NN to run ...
5
votes
1answer
204 views
Correct cyclic garbage-collection in extension modules
Two sections of Python 2.7's doc mentioned adding cyclic garbage collection (CGC) support for container objects defined in extension modules.
The Python/C API Reference Manual gives two rules, i.e.,
...
2
votes
3answers
143 views
garbage collection in python builtins - sum
When I try to run the following code in python interpreter, it gives me an obvious MemoryError as I am running an infinite loop in order to check the memory usage.
def a():
i=2
while True:
yield ...
3
votes
1answer
99 views
Preserving circular references after garbage collection
import weakref
import gc
class MyClass(object):
def refer_to(self, thing):
self.refers_to = thing
foo = MyClass()
bar = MyClass()
foo.refer_to(bar)
bar.refer_to(foo)
foo_ref = ...
2
votes
1answer
158 views
Find all references to an object in python
What is a good way to find all of the references to an object in python?
The reason I ask is that it looks like we have a "memory leak". We are uploading image files to the server from a web browser. ...
2
votes
1answer
205 views
Boost python object lifetime
cpp:
#include <boost/python.hpp>
using namespace boost;
using namespace boost::python;
struct Foo
{
virtual ~Foo() {}
virtual void Print() = 0;
};
struct FooWrap : Foo, ...
0
votes
0answers
95 views
exceptions.MemoryError instance at a pointer
I'm using python 2.4.3 on a server and when I try to run this code, which works fine on my computer with python 2.7.3:
import sys
import array
import os
import glob
nx = 360
ny = 120
km = 30
ibio = ...
8
votes
1answer
160 views
Is it worth closing files in small functions?
Say you have:
def my_func():
fh = open(...)
try:
print fh.read()
finally:
fh.close()
My first question is: Is it worth having the try/finally (or with) statement? Isn't ...
3
votes
1answer
343 views
Release memory when working with PIL
I'm editing an image with PIL (Python Imaging Library). On each step (convert, rotate, resize ...) there are more images created. (An excerpt from the documentation: "Returns a copy of an image ...
0
votes
2answers
244 views
Memory error in Python for loops
I'm currently trying to find the largest prime number contained within another large number.
maxlen = 1024
for i in range(1023, -1, -1):
maxlen -= 1
number = ""
for k in range(maxlen, -1, ...
2
votes
2answers
67 views
Deletion of a list in python with and without ':' operator
I've been working with python for quite a bit of time and I'm confused regarding few issues in the areas of Garbage Collection, memory management as well as the real deal with the deletion of the ...
0
votes
3answers
143 views
Which technique has the lowest memory consumption: global variables or function arguments?
The program I'm coding now makes a pretty huge list of data items.
Now, I can make this list to be global (make available for other functions in other modules) and can be used in all other modules. ...
5
votes
3answers
610 views
How do you manage a temporary directory such that it is guaranteed to be deleted on program close?
I'm working with a temporary directory and I want to make sure that it gets deleted on program close (regardless of whether the program was successful). I'm using tempfile.mkdtempto create the ...
11
votes
3answers
587 views
How does Python's Garbage Collector Detect Circular References?
I'm trying to understand how Python's garbage collector detects circular references. When I look at the documentation, all I see is a statement that circular references are detected, except when the ...
0
votes
1answer
58 views
How many python garbage collected objects is normal? [closed]
I'm writing a monitor of sorts, and have been noticing the memory grows over time (doubles after 3 days). Decided to try manually collecting garbage after every cycle, and it manages to clean up over ...
2
votes
2answers
153 views
Can Python's garbage collection guarantee the reclaiming of circular referenced objects under all circumstances?
This question is an extension of a question I asked earlier: Python Delegate Pattern - How to avoid circular reference? After reading the replies, I decided to clarify my question, but was requested ...
1
vote
1answer
126 views
Does Python's garbage collector harm my application?
Is it bad in Python, when I don't hold a reference of a Thread I created with: threading.Thread(target=worker_method)? Is it possible that the garbage collecor does anything to it, which affects the ...
3
votes
2answers
114 views
twisted python garbage collection
I currently am developing a python twisted server to use as a message processing application. I have come across an odd problem.
I specify my class to handle the get_POST to the server, and pass the ...
1
vote
2answers
342 views
Garbage collecting objects in Django
I have a one-to-many relationship, and I would like to automatically delete the one side after the last referencing object on the many side has been deleted. That is to say, I want to perform garbage ...
0
votes
1answer
185 views
Is it OK for garbage collection to keep pyside/Qt references to sub-widgets as member variables?
Is this OK from a garbage-collection/proper cleanup perspective?
class MyWidget(QWidget):
def __init__(self,qtParent):
QWidget.__init__(self,qtParent):
self.mySubWidget = ...
-4
votes
1answer
215 views
How is memory managed in Python [closed]
Is garbage collection done in Python by itself or do we need to do it ourselves.
I used to believe that Python used to manage all sort of memory issues itself and we need worry about memory ...




