If the one and only Python interpreter is in the middle of executing a bytecode when the OS dispatches another thread, which calls a Python callback - what happens? Am I right to be concerned about the reliability of this design?
|
In general situations, the C library needs to call However, if the C library is running within the context of, say, a python C extension, then there are simple cases where it is safe to omit GIL manipulation at all. Think of this calling sequence: 1) python code calls C function In such a case, it is safe to omit GIL manipulation. Because |
|||||||||||||||
|
threadingormultiprocessing? – sr2222 Aug 24 '12 at 20:48