Re: [Tutor] How to log process handles and GDI objects in python

2013-02-11 Thread Alan Gauld
On 11/02/13 04:25, Pai, Yogesh M wrote: Hi Alan, Here are the additional details: Python version: 2.7.3 OS version: Windows 7 -64 bit I have an application that has a automation layer built in python. During every subsequent runs, I want to log the process threads and GDI objects > ( the one y

Re: [Tutor] How to log process handles and GDI objects in python

2013-02-11 Thread eryksun
On Sun, Feb 10, 2013 at 11:25 PM, Pai, Yogesh M wrote: > I want to log the process threads and GDI objects (the one you see in > the Windows task manager) in my python code- The idea is to use this > data to generate a plot to check if the application leaks memory in a > long run. Although I can u

Re: [Tutor] How to log process handles and GDI objects in python

2013-02-10 Thread Pai, Yogesh M
-Original Message- From: Tutor [mailto:tutor-bounces+yogesh.m.pai=tektronix@python.org] On Behalf Of Alan Gauld Sent: Friday, February 08, 2013 5:02 PM To: tutor@python.org Subject: Re: [Tutor] How to log process handles and GDI objects in python On 08/02/13 09:06, Pai, Yogesh M wrote: >

Re: [Tutor] How to log process handles and GDI objects in python

2013-02-08 Thread Alan Gauld
On 08/02/13 09:06, Pai, Yogesh M wrote: I would like to know how can I log system process handles and GDI objects for debugging memory leak issues in python. This isn't really a question about learning Python so probably would be better on the main Python mailing list. However it will help

[Tutor] How to log process handles and GDI objects in python

2013-02-08 Thread Pai, Yogesh M
Hi, I would like to know how can I log system process handles and GDI objects for debugging memory leak issues in python. I would like to log these inside a loop (stress test) to check if my application leaks handles and plot them later for my usage. Can you suggest any built in libraries that c