Re: [Numpy-discussion] A new webpage promoting Compiler technology for CPython

2013-02-16 Thread Ronan Lamy
Le 16/02/2013 16:08, Massimo DiPierro a écrit : > Sorry for injecting... Which page is this about? http://compilers.pydata.org/ Cf. the post I answered to. > On Feb 16, 2013, at 9:59 AM, Ronan Lamy wrote: > >> Le 15/02/2013 07:11, Travis Oliphant a écrit : >> >>>

Re: [Numpy-discussion] A new webpage promoting Compiler technology for CPython

2013-02-16 Thread Ronan Lamy
Le 15/02/2013 07:11, Travis Oliphant a écrit : > This page is specifically for Compiler projects that either integrate > with or work directly with the CPython run-time which is why PyPy is not > presently listed. The PyPy project is a great project but we just felt > that we wanted to explicitly

[Numpy-discussion] Inconsistencies with string indices

2012-09-17 Thread Ronan Lamy
Consider the following: >>> import numpy as np >>> np.__version__ '1.6.1' >>> arr = np.asarray([[1, 2, 3]]) >>> arr["0"] Traceback (most recent call last): File "", line 1, in arr["0"] ValueError: field named 0 not found. >>> arr["0",] array([1, 2, 3]) >>> arr["0", 1] 2 >>> arr[0, "1"] 2 >

Re: [Numpy-discussion] ANN: NumPy 1.7.0b1 release

2012-08-22 Thread Ronan Lamy
Le mercredi 22 août 2012 à 10:59 -0600, Orion Poplawski a écrit : > On 08/22/2012 10:26 AM, Orion Poplawski wrote: > > On 08/22/2012 09:55 AM, Orion Poplawski wrote: > >> On 08/21/2012 10:24 AM, Ondřej Čertík wrote: > >>> Hi, > >>> > >>> I'm pleased to announce the availability of the first beta re

Re: [Numpy-discussion] Status of NumPy and Python 3.3

2012-07-30 Thread Ronan Lamy
Le lundi 30 juillet 2012 à 11:07 -0700, Ondřej Čertík a écrit : > On Mon, Jul 30, 2012 at 10:04 AM, Ronan Lamy wrote: > > Le lundi 30 juillet 2012 à 17:10 +0100, Ronan Lamy a écrit : > >> Le lundi 30 juillet 2012 à 04:57 +0100, Ronan Lamy a écrit : > >> > Le lundi

Re: [Numpy-discussion] Status of NumPy and Python 3.3

2012-07-30 Thread Ronan Lamy
Le lundi 30 juillet 2012 à 17:10 +0100, Ronan Lamy a écrit : > Le lundi 30 juillet 2012 à 04:57 +0100, Ronan Lamy a écrit : > > Le lundi 30 juillet 2012 à 02:00 +0100, Ronan Lamy a écrit : > > > > > > > > Anyway, I managed to compile (by blanking > > > n

Re: [Numpy-discussion] Status of NumPy and Python 3.3

2012-07-30 Thread Ronan Lamy
Le lundi 30 juillet 2012 à 04:57 +0100, Ronan Lamy a écrit : > Le lundi 30 juillet 2012 à 02:00 +0100, Ronan Lamy a écrit : > > > > > Anyway, I managed to compile (by blanking > > numpy/distutils/command/__init__.py) and to run the tests. I only see > > the 2 pickl

Re: [Numpy-discussion] Status of NumPy and Python 3.3

2012-07-29 Thread Ronan Lamy
Le lundi 30 juillet 2012 à 02:00 +0100, Ronan Lamy a écrit : > > Anyway, I managed to compile (by blanking > numpy/distutils/command/__init__.py) and to run the tests. I only see > the 2 pickle errors from your latest gist. So that's all good! And the cause of these errors is

Re: [Numpy-discussion] Status of NumPy and Python 3.3

2012-07-29 Thread Ronan Lamy
Le dimanche 29 juillet 2012 à 14:45 -0700, Ondřej Čertík a écrit : > Hi Ronan! > > On Sun, Jul 29, 2012 at 2:27 PM, Ronan Lamy wrote: > > Le samedi 28 juillet 2012 à 18:09 -0700, Ondřej Čertík a écrit : > > > >> > >> So now the PR actually seems to

Re: [Numpy-discussion] Status of NumPy and Python 3.3

2012-07-29 Thread Ronan Lamy
Le dimanche 29 juillet 2012 à 23:55 +0200, Stefan Krah a écrit : > Ronan Lamy wrote: > > ImportError: No module named 'distutils.command.install_clib' > > I'm seeing the same with Python 3.3.0b1 (68e2690a471d+) and this patch > solves the problem: > &g

Re: [Numpy-discussion] Status of NumPy and Python 3.3

2012-07-29 Thread Ronan Lamy
Le samedi 28 juillet 2012 à 18:09 -0700, Ondřej Čertík a écrit : > > So now the PR actually seems to work. The rest of the failures are here: > > https://gist.github.com/3195520 > I wanted to have a look at the import errors in your previous gist. How did you get rid of them? I can't even insta

Re: [Numpy-discussion] about sympy

2012-03-11 Thread Ronan Lamy
Le dimanche 11 mars 2012 à 01:31 -0600, Val Kalatsky a écrit : > Can you? > The question should be: Why sympy does not have Fresnel integrals? > Well, the development version has hypergeometric functions, which is enough to integrate sin(x**2): >>> from sympy import * >>> x = Symbol('x') >>> inte