[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/issue1303434
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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 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 it?

 The fix for use of native editline (readline emulation) was done and is 
 already implemented on the trunk (2.7).
 Please see:http://bugs.python.org/issue6877
 You can find the patch in that tracker issue or 
 here:http://svn.python.org/view?view=revrevision=74970

 It was marked for a backport to a future 2.6.5 release too.

  Are there any plans to provide 64 bit support in future Mac OS 2.6.x
  releases?

 AFAIK, it is already supported.
 Perhaps you should specify the exact problems you have.
 I believe that a more appropriate place for that would be pythonmac-sig 
 mailing list, though.

 Best regards,

         Zvezdan

Thank-you, doing a manual backport was easy once I knew where to find
the diff =)

- Chris


-- 
http://mail.python.org/mailman/listinfo/python-list


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 it?
Are there any plans to provide 64 bit support in future Mac OS 2.6.x
releases?

Thanks
-- 
http://mail.python.org/mailman/listinfo/python-list


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