Do all of the default monkey patching (calls every other applicable function in this module).
Replace the standard socket object with gevent’s cooperative sockets.
If dns is true, also patch dns functions in socket.
Replace SSLSocket object and socket wrapping functions in ssl with cooperative versions.
This is only useful if patch_socket() has been called.
Replace os.fork() with gevent.fork(). Does nothing if fork is not available.
Replace time.sleep() with gevent.sleep().
Replace select.select() with gevent.select.select().
If aggressive is true (the default), also remove other blocking functions from select and (on Python 3.4 and above) selectors.
Replace the standard thread module to make it greenlet-based.
Replace subprocess.call(), subprocess.check_call(), subprocess.check_output() and subprocess.Popen() with cooperative versions.
Patch sys.std[in,out,err] to use a cooperative IO via a threadpool.
This is relatively dangerous and can have unintended consequences such as hanging the process or misinterpreting control keys when input and raw_input are used.
This method does nothing on Python 3. The Python 3 interpreter wants to flush the TextIOWrapper objects that make up stderr/stdout at shutdown time, but using a threadpool at that time leads to a hang.
Retrieve the original object from a module.
If the object has not been patched, then that object will still be retrieved.
| Parameters: | item_name – A string or sequenc of strings naming the attribute(s) on the module mod_name to return. |
|---|---|
| Returns: | The original value if a string was given for item_name or a sequence of original values if a sequence was passed. |
Check if a module has been replaced with a cooperative version.
Check if an object in a module has been replaced with a cooperative version.
Next page: gevent.pool – Managing greenlets in a group