Uwe Schmitt wrote: > /* > > "C:\cygwin\home\uschmitt\workspace_eclipse_ganymede\PySVDLIB\src\svdlibc.pyx":157 > * cdef SMat As > * > * SVDVerbosity = verbosity # <<<<<<<<<<<<<< > * print SVDVerbosity > * print SVDVersion
If this is inside a function, have you declared SVDVerbosity as a global within that function? If not, the assignment is implicitly declaring it as a local. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
