Debugging is broken by gevent monkey-patching
description
Gevent uses monkey patching for making IO function cooperative, and work with greenlets:
from gevent import monkey; monkey.patch_all()
After the monkey patching is done, debugging no longer works. I would be good to be able to debug monkey patched applications.