github 的搜索功能经常导致无法搜索到需要的问题怎么办?

╰─➤  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

图片.png

https://github.com/eventlet/eventlet/discussions?discussions_q=1+RLock%28s%29+were+not+greened

图片.png

但是我就用 RLock 就能搜索到

https://github.com/eventlet/eventlet/issues?q=RLock

图片.png

大家要在 issue/discussions 快速定位类似问题的时候都是怎么做的?

阅读 694
1 个回答
  1. 搜索特定关键词
  2. 使用 Google 指定搜索 GitHub
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题