Re: [Cython] GSoC Proposal - Reimplement C modules in CPython's standard library in Cython.

2011-04-12 Thread Arthur de Souza Ribeiro
Hi Stefan, yes, I'm working on this, in fact I'm trying to recompile json module (http://docs.python.org/library/json.html) adding some type definitions and cython things o get the code faster. I'm getting in trouble with some things too, I'm going to enumerate here so that, you could give me some

Re: [Cython] Test runner

2011-04-12 Thread Robert Bradshaw
On Mon, Apr 11, 2011 at 3:56 AM, mark florisson wrote: > On 11 April 2011 12:53, mark florisson wrote: >> On 11 April 2011 12:45, Stefan Behnel wrote: >>> mark florisson, 11.04.2011 12:26: Can we select tests in the tests directory selectively? I see the -T or --ticket option, but

Re: [Cython] cython-docs repository

2011-04-12 Thread Robert Bradshaw
On Sat, Apr 9, 2011 at 10:13 AM, Jason Grout wrote: > On 4/9/11 12:02 PM, Robert Bradshaw wrote: >> >> Yep, we did that during the workshop. I thought I had sent out an >> announcement, but I guess not. > > Is there a summary anywhere of the exciting things that happened in the > workshop? Not ye

Re: [Cython] "Cython's Users Guide"

2011-04-12 Thread Robert Bradshaw
On Mon, Apr 11, 2011 at 2:35 PM, Francesc Alted wrote: > 2011/4/11 William Stein >> >> Hi, >> >> I'm teaching Cython in my Sage course yet again, and noticed that >> again there are some very confusing aspects of the Cython >> documentation organization, which could probably be improved by a few

[Cython] Code examples missing in Cython User's Guide

2011-04-12 Thread Chris Lasher
My apologies for cross-posting this from cython-users, but I realized I should have sent this bug report to cython-devel. Several code examples are missing from the User's Guide due to the source code files being moved or deleted. See for example the Tutorial page on the User's Guide http://docs.c

Re: [Cython] GSoC Proposal - Reimplement C modules in CPython's standard library in Cython.

2011-04-12 Thread Sturla Molden
Den 12.04.2011 14:59, skrev Arthur de Souza Ribeiro: 1 - Compile package modules - json module is inside a package (files: __init__.py, decoder.py, encoder.py, decoder.py) is there a way to generate the cython modules just like its get generated by cython? I'll propose these 10 guidelines

Re: [Cython] Code examples missing in Cython User's Guide

2011-04-12 Thread Arthur de Souza Ribeiro
Hey Chris, the code for primes and fib examples, are in the directory 'Demos' of the repository... Best Regards. []s Arthur 2011/4/12 Chris Lasher > My apologies for cross-posting this from cython-users, but I realized I > should have sent this bug report to cython-devel. > > Several code exa

Re: [Cython] GSoC Proposal - Reimplement C modules in CPython's standard library in Cython.

2011-04-12 Thread Stefan Behnel
Arthur de Souza Ribeiro, 12.04.2011 14:59: Hi Stefan, yes, I'm working on this, in fact I'm trying to recompile json module (http://docs.python.org/library/json.html) adding some type definitions and cython things o get the code faster. Cool. I'm getting in trouble with some things too, I'm

Re: [Cython] GSoC Proposal - Reimplement C modules in CPython's standard library in Cython.

2011-04-12 Thread Robert Bradshaw
On Tue, Apr 12, 2011 at 11:22 AM, Stefan Behnel wrote: > Arthur de Souza Ribeiro, 12.04.2011 14:59: >> >> Hi Stefan, yes, I'm working on this, in fact I'm trying to recompile json >> module (http://docs.python.org/library/json.html) adding some type >> definitions and cython things o get the code

Re: [Cython] GSoC Proposal - Reimplement C modules in CPython's standard library in Cython.

2011-04-12 Thread Robert Bradshaw
On Tue, Apr 12, 2011 at 8:33 AM, Sturla Molden wrote: > Den 12.04.2011 14:59, skrev Arthur de Souza Ribeiro: >> >> 1 - Compile package modules - json module is inside a package (files: >> __init__.py, decoder.py, encoder.py, decoder.py) is there a way to generate >> the cython modules just like it