Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

New event loop integration system

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

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

評価

難易度
5/5
見積もり時間
1週間以上
初心者へのやさしさ
25/100
issue の種類
機能追加
明瞭さ
説明が足りない
活発さ
停滞
技術スタック
python
領域
backend

調査の方向性

Issue ではリポジトリのファイルもテストも特定されていません。まず、提案されているエントリーポイント start_guest_run と、asyncio、tkinter、Qt 向けのホストループコールバックの例を読み、実装前に、どの統合 API とサポート対象のイベントループを対象範囲とするかを明確にしてください。合意された設計と、動作するゲストモード統合ができれば完了です。

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

説明

I would like to change our event-loop integration with Trio's guest mode. Trio's guest mode also works on asyncio thanks to aioguest. For it to work, we just need to have a function that can schedule a callback in the host event-loop in a thread-safe way.

  • in asyncio, that would be loop.call_soon_threadsafe(callback),
  • in tkinter, that would be tk.after(0, callback).
  • Qt supports Trio's guest mode, see here.
  • ...

For instance, here is how it looks like when the host event-loop is tkinter's:

from tkinter import Tk

from anyio import sleep
from anyioutils import start_guest_run


def run_sync_soon_threadsafe(fn):
    tk.after(0, fn)

def done_callback(outcome):
    print("done")

async def foo():
    for i in range(10):
        await sleep(0.1)
        print(i)

tk = Tk()
start_guest_run(foo, run_sync_soon_threadsafe=run_sync_soon_threadsafe, done_callback=done_callback)
tk.mainloop()

Before calling tk.mainloop(), we call start_guest_run() which runs foo as a task in tkinter's event-loop.

Thoughts?

主要言語
Python
スター
734
フォーク
411
平均マージ
1日 2時間
マージ済み PR(30日)
9

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

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

はじめの一歩

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

ipython/ipykernel のほかの issue

ipython/ipykernel の issue をすべて見る

似ている issue

Python の issue をもっと見る

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

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