Why can't I import Python module signal using Jython on Linux?

I can't find a reference to the "signal" class that Jython doesn't account for. Using Jython 2.1.

thank

+2


source to share


1 answer


I would guess that Unix style signals are difficult to do on the JVM as the JVM has no idea about signals and it probably takes some JNI magic to get this to work.



In Jython 2.5, the module exists, but it throws for most functions NotImplementedError

.

+2


source







All Articles