How to get C and python functions into the same namespace?

D'Arcy J.M. Cain darcy at vex.net
Sat Dec 11 02:01:10 EST 1999


Wojciech Zabolotny <wzab at ise.pw.edu.pl> wrote:
> How can I locate both C and python functions in the same namespace?

from module import *

That imports all the modulue contents into the current namespace and
they will be exported with the local ones into the program that calls
your wrapper module.

-- 
D'Arcy J.M. Cain <darcy at vex.net>           |  Democracy is three wolves
http://www.vex.net/                        |  and a sheep voting on         
+1 416 425 1212     (DoD#0082)    (eNTP)   |  what's for dinner.



More information about the Python-list mailing list