microsoft / microsoft/vscode-python-debugger

Bug:Debug didn't work in Qthread

オープン
#697 コメント 6 件 リアクション 1 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

feature-request needs community feedback
主要言語
TypeScript
スター
180
フォーク
126
平均マージ
2日 3時間
マージ済み PR(30日)
3

説明

Description:

When I use Qt for Pyside6, I open a Qthread sub thread in the main thread and add a breakpoint inside the sub thread, but Python debugger does not enter the sub thread,it just didn't work

Origin Code:
main.py:

import sys
from PySide6.QtWidgets import QApplication, QMainWindow, QPushButton, QTextEdit, QVBoxLayout, QWidget
from PySide6.QtCore import Qt
from worker_thread import WorkerThread

class MainWindow(QMainWindow):
    def __init__(self):
        super().__init__()
        self.setWindowTitle("QThread Debug Test")
        self.setGeometry(100, 100, 400, 300)
        
        # 创建中央部件和布局
        central_widget = QWidget()
        self.setCentralWidget(central_widget)
        layout = QVBoxLayout(central_widget)
        
        # 创建按钮
        self.start_button = QPushButton("Start Thread")
        self.start_button.clicked.connect(self.start_thread)
        layout.addWidget(self.start_button)
        
        # 创建文本显示区域
        self.text_edit = QTextEdit()
        self.text_edit.setReadOnly(True)
        layout.addWidget(self.text_edit)
        
        # 创建工作线程
        self.worker_thread = None
    
    def start_thread(self):
        if self.worker_thread is None or not self.worker_thread.isRunning():
            self.worker_thread = WorkerThread()
            self.worker_thread.message_signal.connect(self.update_text)
            self.worker_thread.start()
            self.text_edit.append("Thread started...")
    
    def update_text(self, message):
        self.text_edit.append(message)

if __name__ == "__main__":
    app = QApplication(sys.argv)
    window = MainWindow()
    window.show()
    sys.exit(app.exec()) 

sub_thread.py:

from PySide6.QtCore import QThread, Signal
import time

class WorkerThread(QThread):
    message_signal = Signal(str)
    
    def __init__(self):
        super().__init__()
        self.running = True
    
    def run(self):
        count = 0
        while self.running and count < 10:
            count += 1
            self.message_signal.emit(f"Count: {count}")
            time.sleep(1)  # 模拟耗时操作
        
        self.message_signal.emit("Thread finished!")
    
    def stop(self):
        self.running = False 

Where is the sub-thread?

Image

Where is the breakpoint?

Image

What's the Performance?
Set the breakpoint and push the button,then you'll find that Python Debugger didn't work in the workthread(sub-thread)!

Image

Image

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

調査の方向性

まず、提供されている main.py と sub_thread.py の例を使って報告内容を再現し、WorkerThread.run にブレークポイントを設定します。次に、デバッガーのスレッド処理と、PySide6 または QThread のサポートに関する既存のテストを調査します。VS Code のデバッグセッション中にワーカースレッドのブレークポイントに到達すれば完了です。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
python
領域
devtools
issue の種類
バグ
難易度
4/5
見積もり時間
3〜5日
活発さ
停滞
明瞭さ
説明が足りない
初心者へのやさしさ
25/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。