[Cython] [mailinglist] Re: problems with external data

Greg Ewing greg.ewing at canterbury.ac.nz
Sat Nov 15 00:31:49 CET 2008


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


More information about the Cython-dev mailing list