# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ The autoGIL module provides a function (installAutoGIL) that automatically locks and unlocks Python's Global Interpreter Lock when running an event loop. """ class AutoGILError(Exception): pass __doc__ = """The autoGIL module provides a function (installAutoGIL) that automatically locks and unlocks Python's Global Interpreter Lock when running an event loop.""" __file__ = '/Users/Shared/src/ide/build-files/build-temp/runtimes-release/__os__/osx/runtime-python2.7/lib/Python.framework/Versions/Current/lib/python2.7/lib-dynload/autoGIL.so' __name__ = 'autoGIL' __package__ = None def installAutoGIL(): """ installAutoGIL() -> None Install an observer callback in the event loop (CFRunLoop) for the current thread, that will lock and unlock the Global Interpreter Lock (GIL) at appropriate times, allowing other Python threads to run while the event loop is idle. """ return None