Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 41 for event (0.008 sec.)
- 18.5.2. イベントループ — Python 3.6.5 ドキュメント 16210
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...18.5.2. イベントループ ¶ ソースコード: Lib/asyncio/events.py 18.5.2.1. イベントループ関数 ¶ 以下の関数は、グ...セス手段を提供するものであり、プロセスの実行前に set_event_loop_policy() を呼び出して設定された代替ポリシーに...は適用できないことに注意してください。 asyncio. get_event_loop ( ) ¶ get_event_loop_policy().get_event_loop(...) の呼び出しと等価です。 asyncio. set_event_loop ( loop ) ¶ get_event_loop_policy().set_event_... - https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
- 20.8. xml.dom.pulldom --- 部分的な DOM ツリー構築のサポート — Python 3.6.5 ドキ... 10833
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...om doc = pulldom . parse ( 'sales_items.xml' ) for event , node in doc : if event == pulldom . START_ELEMEN...doc . expandNode ( node ) print ( node . toxml ()) event は定数で以下の内の一つです: START_ELEMENT END_ELEM...(すなわち文章中の任意の点の場所を記憶する) か、 DOMEventStream.expandNode() メソッドを使用して DOM 関連の処...rser=None , bufsize=None ) ¶ 与えられた入力から DOMEventStream を返します。 stream_or_string はファイル名か... - https://man.plustar.jp/python/library/xml.dom.pulldom.html - [similar]
- 18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 9512
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...using the ensure_future() function or the AbstractEventLoop.create_task() method. コルーチン (およびタスク...(): print ( "Hello World!" ) loop = asyncio . get_event_loop () # Blocking call which returns when the hel...lo World with call_soon() example uses the AbstractEventLoop.call_soon() method to schedule a callback. 18....k await asyncio . sleep ( 1 ) loop = asyncio . get_event_loop () # Blocking call which returns when the dis... - https://man.plustar.jp/python/library/asyncio-task.html - [similar]
- 18.5.4. Transports and protocols (callback based API) — Python 3.6.5 ドキュメン... 8734
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...スポートのインスタンスを作成することはなく、 AbstractEventLoop のメソッドを呼び出すことでトランスポートとその...5.4.3.1. TCP Echo クライアントプロトコル ¶ AbstractEventLoop.create_connection() メソッドを使用した TCP Ech...server closed the connection' ) print ( 'Stop the event loop' ) self . loop . stop () loop = asyncio . get..._event_loop () message = 'Hello World!' coro = loop . cre... - https://man.plustar.jp/python/library/asyncio-protocol.html - [similar]
- 18.5.7. 同期プリミティブ — Python 3.6.5 ドキュメント 8734
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...¶ ソースコード: Lib/asyncio/locks.py ロック: Lock Event Condition セマフォ: Semaphore BoundedSemaphore asy...lock API は threading モジュールのクラス ( Lock , Event , Condition , Semaphore , BoundedSemaphore ) に近く...が送出されます。 戻り値はありません。 18.5.7.1.2. Event ¶ class asyncio. Event ( * , loop=None ) ¶ threadi...ng.Event と等価で非同期な Event 実装です。 イベントオブジェ... - https://man.plustar.jp/python/library/asyncio-sync.html - [similar]
- 18.5.6. サブプロセス — Python 3.6.5 ドキュメント 8393
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...Windows では、デフォルトのイベントループは SelectorEventLoop になりますが、これはサブプロセスをサポートして...いません。代わりに ProactorEventLoop を使用します。Windows で使用する例: import asy...s . platform == 'win32' : loop = asyncio . ProactorEventLoop () asyncio . set_event_loop ( loop ) 参考 利用...ファリミットを設定します。他の引数については AbstractEventLoop.subprocess_exec() を参照してください。 Process... - https://man.plustar.jp/python/library/asyncio-subprocess.html - [similar]
- 29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 8393
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...ule finalization of an asychronous generator by an event loop. バージョン 3.6 で追加: See PEP 525 for more...(see settrace() ), but it is called with different events, for example it isn't called for each executed li...e of code (only on call and return, but the return event is reported even when an exception has been set)....ile functions should have three arguments: frame , event , and arg . frame is the current stack frame. even... - https://man.plustar.jp/python/library/sys.html - [similar]
- 18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 8113
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
....1. 基底イベントループ ¶ ソースコード: Lib/asyncio/events.py イベントループは asyncio が提供する中心実行デバ...出す、コストの大きい関数の委譲。 class asyncio. BaseEventLoop ¶ このクラスは実装詳細です。 AbstractEventLoop...す。このクラスは直接使うべきではありません。 AbstractEventLoop を代わりに使用してください。サードパーティのコ...ードで BaseEventLoop をサブクラス化すべきではありません。このクラス... - https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
- 18.4. selectors --- 高水準の I/O 多重化 — Python 3.6.5 ドキュメント 7895
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...+-- DevpollSelector +-- KqueueSelector 以下では、 events は与えられたファイルオブジェクトを待機すべき I/O...モジュール定数の組み合わせを設定できます: 定数 意味 EVENT_READ 読み込み可能 EVENT_WRITE 書き込み可能 class s...ルオブジェクトです。 fd ¶ 下層のファイル記述子です。 events ¶ このファイルオブジェクトで待機しなければならない...ートしています。 abstractmethod register ( fileobj , events , data=None ) ¶ I/O イベントを監視するファイルオブ... - https://man.plustar.jp/python/library/selectors.html - [similar]
- Pythonモジュール索引 — Python 3.6.5 ドキュメント 7895
- ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b |
...mand/response protocols. asyncio Asynchronous I/O, event loop, coroutines and tasks. asyncore A base class...le Internationalization services. logging Flexible event logging system for applications. logging.config Co...hout importing them first. s sched General purpose event scheduler. secrets Generate secure random numbers...ding copying. signal Set handlers for asynchronous events. site Module responsible for site-specific config... - https://man.plustar.jp/python/py-modindex.html - [similar]
