╰─➤ ipython 1 ↵
Python 3.14.2 (main, Dec 5 2025, 16:49:16) [Clang 17.0.0 (clang-1700.4.4.1)]
Type 'copyright', 'credits' or 'license' for more information
IPython 9.9.0 -- An enhanced Interactive Python. Type '?' for help.
Tip: Use `object?` to see the help on `object`, `object??` to view its source
Cmd click to launch VS Code Native REPL
In [1]: exec('import eventlet; eventlet.monkey_patch()')
<string>:1: DeprecationWarning:
Eventlet is deprecated. It is currently being maintained in bugfix mode, and
we strongly recommend against using it for new projects.
If you are already using Eventlet, we recommend migrating to a different
framework. For more detail see
https://eventlet.readthedocs.io/en/latest/asyncio/migration.html
1 RLock(s) were not greened, to fix this error make sure you run eventlet.monkey_patch() before importing any other modules.比如我遇到了上面的问题,我用去 github 的 issue 和 discussions 搜索 1 RLock(s) were not greened 居然什么都搜索不到
https://github.com/eventlet/eventlet/issues?q=1%20RLock(s)%20were%20not%20greened
https://github.com/eventlet/eventlet/discussions?discussions_q=1+RLock%28s%29+were+not+greened
但是我就用 RLock 就能搜索到
https://github.com/eventlet/eventlet/issues?q=RLock
大家要在 issue/discussions 快速定位类似问题的时候都是怎么做的?