Robert Bradshaw wrote: > A simple grammar -> parser module like you've talked about before > seems ideal, and would probably be fairly compact.
Before diving into this, there are a couple of things you should take into account: 1. A parser generator of the kind used by CPython is probably not capable of parsing C declarations without doing some hackery somewhere. 2. There is computation embedded in the current Pyrex parser in various places that you would need to track down and move somewhere else. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
