Re: [pypy-dev] ctypes - PyPy 1.8 slower than Python 2.6.5

2012-02-23 Thread Antonio Cuni
Hello Sébastien, thank you for sharing these numbers. I'm glad to see that my checkin worked so well :-) Indeed, CPython is still quite faster: it might be the case that ~1.5 seconds is still not enough for the jit to fully warm up (especially if there are a lot of hot branches), or simply

Re: [pypy-dev] question re: ancient SSL requirement of pypy

2012-02-23 Thread Armin Rigo
Hi, Maybe we should write down some answers to these questions in a single place... On Thu, Feb 23, 2012 at 00:32, Dale Hubler dhub...@uw.edu wrote: They did not tell me they wanted particular modules also, such as numpy. 'numpypy' is already included in a baseline PyPy but is only a partial

Re: [pypy-dev] [pypy-commit] pypy sepcomp2: Functions can be @exported without specifying argument types,

2012-02-23 Thread Antonio Cuni
Hi Amaury, On 02/22/2012 12:34 AM, amauryfa wrote: Author: Amaury Forgeot d'Arcamaur...@gmail.com Branch: sepcomp2 Changeset: r52748:ce2d7e8a1b42 Date: 2012-02-21 23:28 +0100 http://bitbucket.org/pypy/pypy/changeset/ce2d7e8a1b42/ +def test_implied_signature(self): +@export # No

Re: [pypy-dev] [pypy-commit] pypy sepcomp2: Functions can be @exported without specifying argument types,

2012-02-23 Thread Amaury Forgeot d'Arc
2012/2/23 Antonio Cuni anto.c...@gmail.com Hi Amaury, On 02/22/2012 12:34 AM, amauryfa wrote: Author: Amaury Forgeot d'Arcamaur...@gmail.com Branch: sepcomp2 Changeset: r52748:ce2d7e8a1b42 Date: 2012-02-21 23:28 +0100

[pypy-dev] Invitation to San Francisco Python meetup

2012-02-23 Thread Nam Nguyen
Hi all, I'm helping out the SF Python meetup group organize a pre-PyCon meetup in that same week. I am also soliciting half-hour talks from PyPy developers. So if you happened to stay in San Francisco and the surrounding area, would you attend the meetup and/or give us a talk? I noticed some

Re: [pypy-dev] Invitation to San Francisco Python meetup

2012-02-23 Thread Maciej Fijalkowski
On Thu, Feb 23, 2012 at 1:53 PM, Nam Nguyen nam.ngu...@lolapps.com wrote: Hi all, I'm helping out the SF Python meetup group organize a pre-PyCon meetup in that same week. I am also soliciting half-hour talks from PyPy developers. So if you happened to stay in San Francisco and the

[pypy-dev] libgmp

2012-02-23 Thread Timothy Baldridge
For a project I'm working on, I'd like to have support for gmp in pypy. I have a ctypes pypy module, but from what I understand, pypy's ctypes are a bit slow compared to CPython. What's the best way to get access to get access to libgmp from python? Would you be against a pull request that added

Re: [pypy-dev] libgmp

2012-02-23 Thread William ML Leslie
On 24 February 2012 13:05, William ML Leslie william.leslie@gmail.com wrote: On 24 February 2012 12:56, Timothy Baldridge tbaldri...@gmail.com wrote: For a project I'm working on, I'd like to have support for gmp in pypy. I have a ctypes pypy module, but from what I understand, pypy's

Re: [pypy-dev] libgmp

2012-02-23 Thread Maciej Fijalkowski
On Thu, Feb 23, 2012 at 6:56 PM, Timothy Baldridge tbaldri...@gmail.com wrote: For a project I'm working on, I'd like to have support for gmp in pypy. I have a ctypes pypy module, but from what I understand, pypy's ctypes are a bit slow compared to CPython. What's the best way to get access to

Re: [pypy-dev] libgmp

2012-02-23 Thread Maciej Fijalkowski
On Thu, Feb 23, 2012 at 7:06 PM, William ML Leslie william.leslie@gmail.com wrote: On 24 February 2012 13:05, William ML Leslie william.leslie@gmail.com wrote: On 24 February 2012 12:56, Timothy Baldridge tbaldri...@gmail.com wrote: For a project I'm working on, I'd like to have