On Tue, Feb 14, 2012 at 2:42 PM, Massimo Di Pierro <[email protected]> wrote: > This is veyr useful feedback. I think I fixed them all in trunk. > Please check and report more!
Yep, they are all almost fixed but there are at least 2 more that should be fixed right now: 1. contrib/generics.py:19:28: undeclared name not builtin: ouput (should be output) 2. contrib/gateways/fcgi.py:818:28: undeclared name not builtin: rec (probably should be outrec) I run cython in all *.py files in gluon dir from trunk with the following script inside gluon dir: #!/bin/bash PYS=`find . -name "*.py"` for PY in $PYS; do echo "cythonizing $PY..." cython -Wextra -v $PY done $ ./cythonize.sh 2>gluon.err find gluon.err attached Ricardo
gluon.err.gz
Description: GNU Zip compressed data

