Re: [Python-Dev] Pass possibly imcompatible options to distutil's ccompiler

2011-04-11 Thread Nick Coghlan
On Tue, Apr 12, 2011 at 7:41 AM, Lukas Lueg wrote: > Any other ideas on how to solve this in a better way? Have you tried with distutils2? If it can't help you, it should really be looked into before the packaging API is locked for 3.3. Cheers, Nick. -- Nick Coghlan   |   ncogh...@gmail.com  

[Python-Dev] Pass possibly imcompatible options to distutil's ccompiler

2011-04-11 Thread Lukas Lueg
Hi, I'm the maintainer of Pyrit (http://pyrit.googlecode.com) and recently checked in some code that uses the AES-NI intrinsics found in GCC 4.4+. I'm looking for a way how to build the python-extension using distutils in a sane way and could not get an answer from the distutils-people about that.

Re: [Python-Dev] Make test failed issues for phyton 3.2 on centos5.5

2011-04-11 Thread David Malcolm
On Mon, 2011-04-11 at 07:58 -0400, Tres Seaver wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 04/10/2011 08:00 PM, Stephen Yeng wrote: > > > 11 skips unexpected on linux2: > > test_bz2 test_dbm_gnu test_dbm_ndbm test_gzip test_readline > > test_ssl test_tcl test_tk test_t

Re: [Python-Dev] Make test failed issues for phyton 3.2 on centos5.5

2011-04-11 Thread Antoine Pitrou
Hello, On Mon, 11 Apr 2011 22:43:03 +0800 Stephen Yeng wrote: > Hello, > Thanks for the reply. > This the once of the test I fail, hope you can help so I can fix the rest 4 > errors. :) Please open an issue for each of these failures on http://bugs.python.org Bug reports on the mailing-list typ

Re: [Python-Dev] Make test failed issues for phyton 3.2 on centos5.5

2011-04-11 Thread Stephen Yeng
Hello, Thanks for the reply. This the once of the test I fail, hope you can help so I can fix the rest 4 errors. :) -- Ran 90 tests in 9.191s FAILED (errors=1, skipped=25) test test_zipfile failed -- Traceback (most recent call la

Re: [Python-Dev] Make test failed issues for phyton 3.2 on centos5.5

2011-04-11 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/10/2011 08:00 PM, Stephen Yeng wrote: > 11 skips unexpected on linux2: > test_bz2 test_dbm_gnu test_dbm_ndbm test_gzip test_readline > test_ssl test_tcl test_tk test_ttk_guionly test_ttk_textonly > test_zlib Looks like you are missi

Re: [Python-Dev] [GSoC] Developing a benchmark suite (for Python 3.x)

2011-04-11 Thread Maciej Fijalkowski
On Mon, Apr 11, 2011 at 12:43 PM, Stefan Behnel wrote: > Maciej Fijalkowski, 11.04.2011 11:39: >> >> On Fri, Apr 8, 2011 at 11:22 AM, Stefan Behnel >>  wrote: >>> >>> Jesse Noller, 07.04.2011 22:28: On Thu, Apr 7, 2011 at 3:54 PM, Anthony Scopatz wrote: > > Hi Daniel, > Thank

Re: [Python-Dev] [GSoC] Developing a benchmark suite (for Python 3.x)

2011-04-11 Thread Stefan Behnel
Maciej Fijalkowski, 11.04.2011 11:39: On Fri, Apr 8, 2011 at 11:22 AM, Stefan Behnel wrote: Jesse Noller, 07.04.2011 22:28: On Thu, Apr 7, 2011 at 3:54 PM, Anthony Scopatz wrote: Hi Daniel, Thanks for putting this together. I am a huge supporter of benchmarking efforts. My brief comment i

Re: [Python-Dev] [GSoC] Developing a benchmark suite (for Python 3.x)

2011-04-11 Thread Maciej Fijalkowski
On Fri, Apr 8, 2011 at 11:22 AM, Stefan Behnel wrote: > Jesse Noller, 07.04.2011 22:28: >> >> On Thu, Apr 7, 2011 at 3:54 PM, Anthony Scopatz wrote: >>> >>> Hi Daniel, >>> Thanks for putting this together.  I am a huge supporter of benchmarking >>> efforts.  My brief comment is below. >>> >>> On W

Re: [Python-Dev] Make test failed issues for phyton 3.2 on centos5.5

2011-04-11 Thread Victor Stinner
> [1/1] test_zipfiles > test test_zipfiles crashed -- : No module named > test_zipfiles It means that you don't have a module named test_zipfiles. Retry with "test_zipfile" :-) You may open an issue (including details) for your failures. Victor ___ Py