Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-22 Thread René Dudfield
On Sun, Sep 20, 2009 at 7:15 PM, Robert Kern wrote: > On Sun, Sep 20, 2009 at 13:13, René Dudfield wrote: >> Hi again, >> >> I noticed numpy includes a copy of distutils.  I guess because it's >> been modified in some way? > > numpy.distutils is a set of extensions to distutils; it is not a copy

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-20 Thread Robert Kern
On Sun, Sep 20, 2009 at 13:13, René Dudfield wrote: > Hi again, > > I noticed numpy includes a copy of distutils.  I guess because it's > been modified in some way? numpy.distutils is a set of extensions to distutils; it is not a copy of distutils. -- Robert Kern "I have come to believe that t

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-20 Thread René Dudfield
Hi again, I noticed numpy includes a copy of distutils. I guess because it's been modified in some way? cheers, ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-19 Thread Fernando Perez
Hi all, On Fri, Sep 18, 2009 at 7:52 AM, René Dudfield wrote: > one more thing... > > there's also notes about porting to py3k here: >    http://wiki.python.org/moin/cporting > and here: >    http://wiki.python.org/moin/PortingExtensionModulesToPy3k > > Which are better than the python.org docs f

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-19 Thread René Dudfield
Hi again, I deleted the old git repo there, and I followed the scipy git guide and put the changes here: http://github.com/illume/numpy3k. git clone git://github.com/illume/numpy3k.git So hopefully you'll be able to take those changes from git into svn. If it's still not working... pleas

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-19 Thread René Dudfield
On Sat, Sep 19, 2009 at 10:31 AM, Pauli Virtanen wrote: > pe, 2009-09-18 kello 23:41 -0600, Charles R Harris kirjoitti: > > [clip] >> Hmm, that doesn't work for me, git finds no commits in common if I >> pull and, as far as I can tell, essentially clones the whole thing. I >> quess that's because

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-19 Thread Pauli Virtanen
pe, 2009-09-18 kello 23:41 -0600, Charles R Harris kirjoitti: [clip] > Hmm, that doesn't work for me, git finds no commits in common if I > pull and, as far as I can tell, essentially clones the whole thing. I > quess that's because I'm using git-svn and started in a different > place for the init

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-19 Thread David Cournapeau
René Dudfield wrote: > ah, oh well. I'll just upload diffs as I go. > > Which versions of python is numpy to support? 2.4 and above, cheers, David ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/nu

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-19 Thread René Dudfield
On Sat, Sep 19, 2009 at 6:41 AM, Charles R Harris wrote: >> >> Hi, >> >> I'll be uploading stuff to github at http://github.com/illume/numpy3k. >>    git clone git://github.com/illume/numpy3k.git >> > > Hmm, that doesn't work for me, git finds no commits in common if I pull and, > as far as I can

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-19 Thread David Cournapeau
Charles R Harris wrote: > Hi René, > > On Fri, Sep 18, 2009 at 6:01 AM, René Dudfield > wrote: > > Hello, > > as a big numpy user, and someone wanting to help with the python 3 > migration, I'd like to help with a python 3.1 port of numpy. > > We(at the pyg

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread Charles R Harris
On Fri, Sep 18, 2009 at 1:14 PM, René Dudfield wrote: > On Fri, Sep 18, 2009 at 5:49 PM, René Dudfield wrote: > > On Fri, Sep 18, 2009 at 5:36 PM, René Dudfield wrote: > >> On Fri, Sep 18, 2009 at 5:33 PM, Charles R Harris > >> wrote: > >>> Numpy relies on nose for testing. I know that there i

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread Charles R Harris
On Fri, Sep 18, 2009 at 2:18 PM, René Dudfield wrote: > hi, > > Added a numpy/compat.py file from pygame. > > This defines these things for compatibility: > __all__ = ['geterror', 'long_', 'xrange_', 'ord_', 'unichr_', > 'unicode_', 'raw_input_'] > > > geterror() is useful for exceptions compatib

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread René Dudfield
hi, Added a numpy/compat.py file from pygame. This defines these things for compatibility: __all__ = ['geterror', 'long_', 'xrange_', 'ord_', 'unichr_', 'unicode_', 'raw_input_'] geterror() is useful for exceptions compatible between py3k and pyv2... As in py3k you can't do this: except Im

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread René Dudfield
Hi again, I found your numpy/core/src/py3k_notes.txt file. I left the PY3K.txt I made in there for now, so its easy for people to find... but will use the other file for more specific information like is in there now. Or I can move the information across from PY3K.txt into py3k_notes.txt if you

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread René Dudfield
On Fri, Sep 18, 2009 at 5:49 PM, René Dudfield wrote: > On Fri, Sep 18, 2009 at 5:36 PM, René Dudfield wrote: >> On Fri, Sep 18, 2009 at 5:33 PM, Charles R Harris >> wrote: >>> Numpy relies on nose for testing. I know that there is a py3k branch for >>> nose but it doesn't look very active and I

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread René Dudfield
On Fri, Sep 18, 2009 at 5:36 PM, René Dudfield wrote: > On Fri, Sep 18, 2009 at 5:33 PM, Charles R Harris > wrote: >> Numpy relies on nose for testing. I know that there is a py3k branch for >> nose but it doesn't look very active and I don't know its current state. Do >> you know anything about

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread René Dudfield
On Fri, Sep 18, 2009 at 5:33 PM, Charles R Harris wrote: > Numpy relies on nose for testing. I know that there is a py3k branch for > nose but it doesn't look very active and I don't know its current state. Do > you know anything about that? > > Chuck ah, bugger. No I don't. I can find out thou

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread Charles R Harris
On Fri, Sep 18, 2009 at 10:19 AM, René Dudfield wrote: > On Fri, Sep 18, 2009 at 4:29 PM, Charles R Harris > wrote: > > > > > > On Fri, Sep 18, 2009 at 9:09 AM, René Dudfield wrote: > >> > >> On Fri, Sep 18, 2009 at 4:05 PM, Charles R Harris > >> wrote: > >> > > >> > > >> > On Fri, Sep 18, 200

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread René Dudfield
On Fri, Sep 18, 2009 at 4:29 PM, Charles R Harris wrote: > > > On Fri, Sep 18, 2009 at 9:09 AM, René Dudfield wrote: >> >> On Fri, Sep 18, 2009 at 4:05 PM, Charles R Harris >> wrote: >> > >> > >> > On Fri, Sep 18, 2009 at 8:52 AM, René Dudfield wrote: >> >> >> >> one more thing... >> >> >> >> t

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread Charles R Harris
On Fri, Sep 18, 2009 at 9:09 AM, René Dudfield wrote: > On Fri, Sep 18, 2009 at 4:05 PM, Charles R Harris > wrote: > > > > > > On Fri, Sep 18, 2009 at 8:52 AM, René Dudfield wrote: > >> > >> one more thing... > >> > >> there's also notes about porting to py3k here: > >>http://wiki.python.or

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread René Dudfield
On Fri, Sep 18, 2009 at 4:05 PM, Charles R Harris wrote: > > > On Fri, Sep 18, 2009 at 8:52 AM, René Dudfield wrote: >> >> one more thing... >> >> there's also notes about porting to py3k here: >>    http://wiki.python.org/moin/cporting >> and here: >>    http://wiki.python.org/moin/PortingExtens

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread Charles R Harris
On Fri, Sep 18, 2009 at 8:52 AM, René Dudfield wrote: > one more thing... > > there's also notes about porting to py3k here: >http://wiki.python.org/moin/cporting > and here: >http://wiki.python.org/moin/PortingExtensionModulesToPy3k > > Which are better than the python.org docs for cport

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread René Dudfield
one more thing... there's also notes about porting to py3k here: http://wiki.python.org/moin/cporting and here: http://wiki.python.org/moin/PortingExtensionModulesToPy3k Which are better than the python.org docs for cporting. That's probably a pretty good page to store notes about portin

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread René Dudfield
On Fri, Sep 18, 2009 at 3:10 PM, Charles R Harris wrote: > Hi René, > > On Fri, Sep 18, 2009 at 6:01 AM, René Dudfield wrote: >> >> Hello, >> >> as a big numpy user, and someone wanting to help with the python 3 >> migration, I'd like to help with a python 3.1 port of numpy. >> >> We(at the pygam

Re: [Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread Charles R Harris
Hi René, On Fri, Sep 18, 2009 at 6:01 AM, René Dudfield wrote: > Hello, > > as a big numpy user, and someone wanting to help with the python 3 > migration, I'd like to help with a python 3.1 port of numpy. > > We(at the pygame project) have mostly completed our port of pygame to > python 3.0 and

[Numpy-discussion] I want to help with a numpy python 3.1.x port

2009-09-18 Thread René Dudfield
Hello, as a big numpy user, and someone wanting to help with the python 3 migration, I'd like to help with a python 3.1 port of numpy. We(at the pygame project) have mostly completed our port of pygame to python 3.0 and 3.1 so can offer some insight into what it takes with a CPython extension. p