Eddy Ilg <[email protected]> writes: > ... > > Checking the symbols of Entity.so gives: > # nm Entity.so | grep PyInit_Entity > 0000000000001e5c t PyInit_Entity
When I remember right, "t" means a "local" (aka "static") symbol - you need instead a "global" symbol (identified by "T"). -- https://mail.python.org/mailman/listinfo/python-list
