We're running a server on eventlet green-threads + monkey-patching everything. I need to implement wait loop with periodic check, and I want to put sleep inside.
Is there any difference between :
eventlet.greenthread.sleep(1) AND time.sleep(1) 
in monkey-patched environment? I'm wondering if monkey-patch handles time.sleep
                        
They're the same in a monkey-patched environment.
eventletmonkey patchestime.sleepby default:No monkey patch:
With monkey-patch:
The only way it wouldn't be monkey-patch is if the
eventlet.monkey_patchcall specifies a subset of modules to monkey-patch, leaving out'time':