[issue1303434] Please include pdb with windows distribution

2010-04-06 Thread Chris Grebeldinger
Chris Grebeldinger cgreb...@gmail.com added the comment: Hi Martin, As an aside to the request, is the pdb for the python dll currently available anywhere? -- nosy: +cgrebeld ___ Python tracker rep...@bugs.python.org http://bugs.python.org

Re: What's Going on between Python and win7?

2010-02-23 Thread chris grebeldinger
Have you tried opening file explorer in administrative mode before performing the copy? I think if there isn't sufficient permissions, it does something weird like that. -- http://mail.python.org/mailman/listinfo/python-list

Re: 2.6.4 Mac x86_64 ?

2009-11-17 Thread chris grebeldinger
On Nov 14, 12:53 am, Zvezdan Petkovic zvez...@zope.com wrote: On Nov 13, 2009, at 3:58 PM, chris grebeldinger wrote: Hi All, I've been having some trouble getting ax86_64/i386 universal readline.so to build against libedit, on MacOS 10.5.6 as Apple does. Does anyone have any pointers

2.6.4 Mac x86_64 ?

2009-11-13 Thread chris grebeldinger
Hi All, I've been having some trouble getting a x86_64/i386 universal readline.so to build against libedit, on MacOS 10.5.6 as Apple does. Does anyone have any pointers about what changes I need to make to setup.py or readline.c to achive this? Has someone already done this and would like to share

Re: Equality operator

2005-03-05 Thread Chris Grebeldinger
not has a lower priority than non-Boolean operators, so not a == b is interpreted as not (a == b), and a == not b is a syntax error. http://docs.python.org/lib/boolean.html -- http://mail.python.org/mailman/listinfo/python-list

Re: memory leaks with ctypes LoadLibrary ?

2005-03-01 Thread Chris Grebeldinger
So, am I misinterpreting what gc.collect is printing, and there is actually no memory leak? Or if I'm not and there actually is a problem, Is there a better way to use ctypes so that I don't have to modify the module? -- http://mail.python.org/mailman/listinfo/python-list

Re: Communication between python scripts

2005-03-01 Thread Chris Grebeldinger
There are many ways, for instance you could use SimpleXMLRPCServer and have one app expose a done_process() function, and use that to synchronize. -- http://mail.python.org/mailman/listinfo/python-list