Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Tkinter コードの単体テストを試みています。ウィジェットのコールバックが正しく設定されていることをテストでアサートしたいと考えています。Tkinter ウィジェットがバインドされている Python 関数を取得することは可能ですか?
私はこのようなものを書くことができるようにしたいと思います:
def f(): pass b = ttk.Button(command=f) assert b.command is f