Re: [Numpy-discussion] C-API Documentation?

2007-09-24 Thread Bill Baxter
On 9/25/07, Thomas Schreiner <[EMAIL PROTECTED]> wrote: > > Andrew Straw schrieb: > > Thomas Schreiner wrote: > >> Am I doing anything wrong in this program? It's crashing immediately > >> after the "before" line, using Borland C++ Builder 6 and > >> numpy-1.0.3.1.win32-py2.4. > > You have to call

Re: [Numpy-discussion] C-API Documentation?

2007-09-24 Thread Eric Firing
Thomas Schreiner wrote: > Hi, > > is there any more documentation about the numpy C API than the one at > http://projects.scipy.org/scipy/numpy/wiki/NumPyCAPI If you have not already done so, I recommend following the suggestion at the bottom of that page, and buying Travis's book (http://www.t

Re: [Numpy-discussion] C-API Documentation?

2007-09-24 Thread Thomas Schreiner
Andrew Straw schrieb: > Thomas Schreiner wrote: >> Am I doing anything wrong in this program? It's crashing immediately >> after the "before" line, using Borland C++ Builder 6 and >> numpy-1.0.3.1.win32-py2.4. > You have to call import_array() before using the C API. Thanks a lot, that was the p

Re: [Numpy-discussion] C-API Documentation?

2007-09-24 Thread Andrew Straw
Thomas Schreiner wrote: > Am I doing anything wrong in this program? It's crashing immediately > after the "before" line, using Borland C++ Builder 6 and > numpy-1.0.3.1.win32-py2.4. You have to call import_array() before using the C API. ___ Numpy-disc

Re: [Numpy-discussion] C-API Documentation?

2007-09-24 Thread Thomas Schreiner
Hi. dmitrey wrote: > Thomas Schreiner wrote: >> is there any more documentation about the numpy C API than the one >> at http://projects.scipy.org/scipy/numpy/wiki/NumPyCAPI ? > > I don't know anything about C API, but scipy documentation from the > website > http://www.scipy.org/doc/api_docs/ i

Re: [Numpy-discussion] C-API Documentation?

2007-09-24 Thread dmitrey
I don't know anything about C API, but scipy documentation from the website http://www.scipy.org/doc/api_docs/ is dated 14 August 2007, so scipy 0.6.0 doc differs significantly. D. Thomas Schreiner wrote: > Hi, > > is there any more documentation about the numpy C API than the one at > http://proj

[Numpy-discussion] C-API Documentation?

2007-09-24 Thread Thomas Schreiner
Hi, is there any more documentation about the numpy C API than the one at http://projects.scipy.org/scipy/numpy/wiki/NumPyCAPI ? This one deals mostly with creating NumPy arrays in C, but I'm more interested in manually filling the arrays with actual data, because wrapping of memory is not poss

Re: [Numpy-discussion] Using the numpy buildbot for svn branches ?

2007-09-24 Thread Stefan van der Walt
On Mon, Sep 24, 2007 at 09:05:57PM +0900, David Cournapeau wrote: > > It should have worked with the first solution. Did you try "trunk", to > > see if it works ? > It does not seem to work with only trunk. > > Is there somewhere the configuration file of the buildbot ? > > with this line for the

Re: [Numpy-discussion] Using the numpy buildbot for svn branches ?

2007-09-24 Thread Matthieu Brucher
> > > It should have worked with the first solution. Did you try "trunk", to > > see if it works ? It does not seem to work with only trunk. This should have worked if the buildbot was setup to work with branches (or even tags, for that matter). > I don't know if this is relevant, but in t

Re: [Numpy-discussion] Using the numpy buildbot for svn branches ?

2007-09-24 Thread David Cournapeau
Matthieu Brucher wrote: > > Thanks Pearu, there is indeed such a dialog, I just didn't think it > would be possible to use the buildbot without any kind of login/pass. > > > > That's one of the drawbacks of buildbot. > > > But unfortunately, I don't seem to get how to set up a differ

Re: [Numpy-discussion] Using the numpy buildbot for svn branches ?

2007-09-24 Thread Matthieu Brucher
> > Thanks Pearu, there is indeed such a dialog, I just didn't think it > would be possible to use the buildbot without any kind of login/pass. That's one of the drawbacks of buildbot. But unfortunately, I don't seem to get how to set up a different url: if > I use branches/numpy.scons as a br

Re: [Numpy-discussion] Using the numpy buildbot for svn branches ?

2007-09-24 Thread David Cournapeau
Pearu Peterson wrote: > David Cournapeau wrote: > >> Hi, >> >> I have a first prototype ready for scons support in numpy.distutils >> in a numpy svn branch, and would like to test it on as many >> configurations as possible to see whether my design is OK. Is it >> possible to add a branch

Re: [Numpy-discussion] Using the numpy buildbot for svn branches ?

2007-09-24 Thread Pearu Peterson
David Cournapeau wrote: > Hi, > > I have a first prototype ready for scons support in numpy.distutils > in a numpy svn branch, and would like to test it on as many > configurations as possible to see whether my design is OK. Is it > possible to add a branch to the buildbot ? I think you

[Numpy-discussion] Using the numpy buildbot for svn branches ?

2007-09-24 Thread David Cournapeau
Hi, I have a first prototype ready for scons support in numpy.distutils in a numpy svn branch, and would like to test it on as many configurations as possible to see whether my design is OK. Is it possible to add a branch to the buildbot ? Thanks, David ___