Use the sip -g flag so the GIL is released and reaquired for every API call

This commit is contained in:
Robin Dunn
2017-01-20 22:04:49 -08:00
parent b17665c19d
commit f280d3a0ea

View File

@@ -118,8 +118,10 @@ class Configuration(object):
self.DOXY_XML_DIR = os.path.join(self.WXDIR, 'docs/doxygen/out/xml')
self.SIPOPTS = ' '.join(['-w', # enable warnings
self.SIPOPTS = ' '.join([
'-w', # enable warnings
'-o', # turn on auto-docstrings
'-g', # turn on acquire/release of GIL for everything
#'-e', # turn on exceptions support
#'-T', # turn off writing the timestamp to the generated files '-g', # always release and reaquire the GIL
#'-r', # turn on function call tracing