Re: [Python-Dev] Python 2.5 performance

2006-10-16 Thread Kristján V . Jónsson
Well, it ought to be possible. I can turn off the instrumentation on the other modules, and see what happens. K -Original Message- From: Giovanni Bajo [mailto:[EMAIL PROTECTED] Sent: 12. október 2006 20:30 To: Kristján V. Jónsson Cc: python-dev@python.org Subject: Re: Python 2.5

Re: [Python-Dev] Promoting PCbuild8 (Was: Python 2.5 performance)

2006-10-16 Thread Martin v. Löwis
Kristján V. Jónsson schrieb: I must confess that I am not familiar with the buildbots. The challenge and work-load is primarily initially in setting it up; in this case (for PCbuild8), there is work for both the master and the slave sides (probably, new scripts in Tools/buildbot will have to

Re: [Python-Dev] Problem building module against Mac Python 2.4 and Python 2.5

2006-10-16 Thread Barry Scott
Use an absolute path to the library rather than -framework. That is, add '/Library/Frameworks/Python.framework/Versions/2.4/ Python' to the link command instead of '-framework Python'. Thanks I'll update my builds to do that. Or use distutils! That's definitely advisable anyway, that