Fdb and monkey_patch aware

I use fdb with python binding and I use it in python project where we monkey_patch gevent.Theres is an issue when monkey_patching threads with fdb as reported in this thread :

To sum up : fdb hangs if we use this conf:
gevent.monkey.patch_all(os=False) but works if we set thread to False
gevent.monkey.patch_all(os=False, thread=False)

My question is it possible to make fdb library monkey_patch aware or make some changes on impl.py to make it working with monkey_patching threads?

Thank you