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 :
>>
>>>
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
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
>
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
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
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
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
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
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
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
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
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
12 matches
Mail list logo