Christian Heimes wrote:
> Floris Bruynooghe schrieb:
> > What I can't work out however is how to then be able to raise this
> > exception in another extension module. Just defining it as "extern"
> > doesn't work, even if I make sure the first module -that creates the
> > exception- gets loaded
Floris Bruynooghe schrieb:
> What I can't work out however is how to then be able to raise this
> exception in another extension module. Just defining it as "extern"
> doesn't work, even if I make sure the first module -that creates the
> exception- gets loaded first. Because the symbol is define
Hello
If I have an extension module and want to use an exception I can do by
declaring the exception as "extern PyObject *PyExc_FooError" in the
object files if I then link those together inside a module where the
module has them declared the same (but no extern) and then initialises
them in the P