> > Doesn't "if it ain't broken, don't fix it" apply here?
The fact is that it actually breaks with Python 3.0 :)
I see three solutions:
1)
to copy main parts of pypy's parser and put them inside cython
* Pro:
more easily to modify and clean
specialized for cython purpose
* Cons:
duplicate code among libraries
2)
main parser logic from the pypy repository
compatibility layer inside the cython repository
* Pro: No code duplication
* Cons: Cython dependent of another library
3) Tell to pypy's guys to create a python parser library for python
from pypy's parser
and both cython and python use it.
They will have python 3k support as well as cython
I will try to do my best in working on this parser.
What do you think ?
Fabrizio
--------------------------
Luck favors the prepared mind. (Pasteur)
_______________________________________________
Cython-dev mailing list
[email protected]
http://codespeak.net/mailman/listinfo/cython-dev