Re: feedback requested

2008-02-29 Thread castironpi
On Feb 29, 5:52 am, [EMAIL PROTECTED] wrote: > On Feb 29, 12:55 am, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote: > > > On Thu, 28 Feb 2008 08:09:01 -0800 (PST), [EMAIL PROTECTED] declaimed > > the following in comp.lang.python: > > > > My goal is to return Deadlock from acquire() if its blocking wo

Re: feedback requested

2008-02-29 Thread castironpi
On Feb 29, 12:55 am, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote: > On Thu, 28 Feb 2008 08:09:01 -0800 (PST), [EMAIL PROTECTED] declaimed > the following in comp.lang.python: > > > My goal is to return Deadlock from acquire() if its blocking would > > directly create deadlock.  Basic example: > [

feedback requested

2008-02-28 Thread castironpi
I have a data structure I think would be very useful. It passes a few test cases, but one attempt to optimize it failed, so that may indicate a bug. Will anyone help me debug it, verify it, or clean it? It pertains to multi-threading and is a synchro. structure. If it is not an interest of your

Re: Printing Varable Names Tool.. Feedback requested.

2005-03-31 Thread Ron_Adam
On Thu, 31 Mar 2005 19:13:39 GMT, Ron_Adam <[EMAIL PROTECTED]> wrote: >On Thu, 31 Mar 2005 18:37:53 GMT, Ron_Adam <[EMAIL PROTECTED]> >wrote: > >> >>Hi, Sometimes it just helps to see what's going on, so I've been >>trying to write a tool to examine what names are pointing to what >>objects in the

Re: Printing Varable Names Tool.. Feedback requested.

2005-03-31 Thread Ron_Adam
Fixed it so it now runs from the command line and from winpython as well as idle in Python 2.4 on Windows Xp. I still don't know about linux systems. I decided on viewnames.py as the filename and viewit() as the calling name. #---start--- # viewnames.py """ A utility to print the value of

Re: Printing Varable Names Tool.. Feedback requested.

2005-03-31 Thread Ron_Adam
On Thu, 31 Mar 2005 18:37:53 GMT, Ron_Adam <[EMAIL PROTECTED]> wrote: > >Hi, Sometimes it just helps to see what's going on, so I've been >trying to write a tool to examine what names are pointing to what >objects in the current scope. > >This still has some glitches, like not working in winpyth

Printing Varable Names Tool.. Feedback requested.

2005-03-31 Thread Ron_Adam
Hi, Sometimes it just helps to see what's going on, so I've been trying to write a tool to examine what names are pointing to what objects in the current scope. This still has some glitches, like not working in winpython or the command line, I get a 'stack not deep enough' error. I haven't tes