PYDEV DEBUGGER WARNING: sys.settrace() should not be used when the debugger is being used. This may cause the debugger to stop working correctly. If this is needed, please check: http://pydev.blogspot.com/2007/06/why-cant-pydev-debugger-work-with.html to see how to restore the debug tracing back correctly. Call Location: File "C:\Users\admin\AppData\Local\Programs\Python\Python38\lib\site-packages\gevent\threadpool.py", line 168, in _after_run_task _sys.settrace(None)
时间: 2023-10-07 13:10:28 浏览: 1125
PyDev.Debugger, 在 PyDev & PyCharm中,使用调试器的源.zip
这是一个 PyDev 调试器的警告信息,意思是当调试器正在使用时,不应该使用 `sys.settrace()` 函数,否则可能会导致调试器无法正常工作。如果确实需要使用该函数,请参考链接 http://pydev.blogspot.com/2007/06/why-cant-pydev-debugger-work-with.html,了解如何正确地恢复调试跟踪。这条信息出现的位置是在文件 `C:\Users\admin\AppData\Local\Programs\Python\Python38\lib\site-packages\gevent\threadpool.py` 的第 168 行,在线程池完成任务后调用 `_sys.settrace(None)`。
阅读全文