Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 15 for events (0.031 sec.)
- 18.4. selectors --- 高水準の I/O 多重化 — Python 3.6.5 ドキュメント 14246
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
+-- DevpollSelector +-- KqueueSelector 以下では、 events は与えられたファイルオブジェクトを待機すべき I/O イ...
ルオブジェクトです。 fd ¶ 下層のファイル記述子です。 events ¶ このファイルオブジェクトで待機しなければならない...
ートしています。 abstractmethod register ( fileobj , events , data=None ) ¶ I/O イベントを監視するファイルオブ...
) メソッドを持つオブジェクトのどちらかになります。 events は監視するイベントのビット幅マスクになります。 dat...
- https://man.plustar.jp/python/library/selectors.html - [similar]
- 20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 11372
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
スされた XML 要素を取得するには、 XMLPullParser.read_events() を呼び出します。以下に、例を示します。 >>> parse...
eed ( '<mytag>sometext' ) >>> list ( parser . read_events ()) [('start', <Element 'mytag' at 0x7fa66db2be58>...
t</mytag>' ) >>> for event , elem in parser . read_events (): ... print ( event ) ... print ( elem . tag , '...
します。 xml.etree.ElementTree. iterparse ( source , events=None , parser=None ) ¶ XML セクションを構文解析して...
- https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
- Logging クックブック — Python 3.6.5 ドキュメント 8917
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg
...
logic in the worker processes, to avoid # sending events which would be filtered out between processes. # #...
listener process top-level loop: wait for logging events # (LogRecords)on the queue and handle them, quit w...
worker process top-level loop, which just logs ten events with # random intervening delays before terminatin...
class MyHandler : """ A simple handler for logging events. It runs in the listener process and dispatches ev...
- https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
- 18.3. select --- I/O 処理の完了を待機する — Python 3.6.5 ドキュメント 8638
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
used as Edge or Level Triggered interface for I/O events. sizehint and flags are deprecated and completely...
述子 fd を削除します。 epoll. poll ( timeout=-1 , maxevents=-1 ) ¶ イベントを待機します。 timeout はタイムアウ...
クトを作成する。 kqueue. control ( changelist , max_events [ , timeout=None ] ) → eventlist ¶ kevent に対する...
は kevent オブジェクトのイテラブルまたは None max_events は 0 または正の整数 timeout はタイムアウト秒数 (fl...
- https://man.plustar.jp/python/library/select.html - [similar]
- Pythonモジュール索引 — Python 3.6.5 ドキュメント 8638
- ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b |
...
hout importing them first. s sched General purpose event scheduler. secrets Generate secure random numbers f...
ding copying. signal Set handlers for asynchronous events. site Module responsible for site-specific configu...
om Support for building partial DOM trees from SAX events. xml.etree.ElementTree Implementation of the Eleme...
- https://man.plustar.jp/python/py-modindex.html - [similar]
- 16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 8202
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
す。 curses. mousemask ( mousemask ) ¶ Set the mouse events to be reported, and return a tuple (availmask, old...
. availmask indicates which of the specified mouse events can be reported; on complete failure it returns 0...
t mask. If this function is never called, no mouse events are ever reported. curses. napms ( ms ) ¶ ms ミリ秒...
- https://man.plustar.jp/python/library/curses.html - [similar]
- 17.6. sched --- イベントスケジューラ — Python 3.6.5 ドキュメント 8202
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
f the timefunc function passed to the constructor. Events scheduled for the same time will be executed in th...
- https://man.plustar.jp/python/library/sched.html - [similar]
- 18.5.2. イベントループ — Python 3.6.5 ドキュメント 8063
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
18.5.2. イベントループ ¶ ソースコード: Lib/asyncio/events.py 18.5.2.1. イベントループ関数 ¶ 以下の関数は、グ...
- https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
- 29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 8063
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
(see settrace() ), but it is called with different events, for example it isn't called for each executed lin...
syncio.Loop.shutdown_asyncgens in Lib/asyncio/base_events.py 注釈 This function has been added on a provisio...
- https://man.plustar.jp/python/library/sys.html - [similar]
- 初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 7906
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
. The profile function is called for all monitored events except PyTrace_LINE and PyTrace_EXCEPTION . void P...
cept the tracing function does receive line-number events and does not receive any event related to C functi...
- https://man.plustar.jp/python/c-api/init.html - [similar]