Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 30 for async (0.043 sec.)
3. データモデル — Python 3.6.5 ドキュメント 7993
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 到達しています。 コルーチン関数 (coroutine function) async def を使用して定義された関数やメソッドを コルーチン ... oroutine オブジェクトを返します。 コルーチン関数は async with や async for 文だけでなく await 式を持つことが ... ェクト を参照してください。 非同期ジェネレータ関数 (asynchronous generator function) async def を使って定義さ ... れ、 yield 文を使用している関数やメソッドを asynchronous generator function と呼びます。 そのような関 ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 7733
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ction ( object ) ¶ オブジェクトが コルーチン関数 ( async def シンタックスで定義された関数) の場合真を返しま ... . inspect. iscoroutine ( object ) ¶ オブジェクトが async def で生成された コルーチン の場合真を返します。 バ ... e ( gen_coro ()) バージョン 3.5 で追加. inspect. isasyncgenfunction ( object ) ¶ オブジェクトが asynchronou ... s generator 関数の場合に真を返します。例: >>> async def agen (): ... yield 1 ... >>> inspect . isasync ...
https://man.plustar.jp/python/library/inspect.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7733
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ようになりました。 標準ライブラリーの顕著な改善 The asyncio module has received new features, significant us ... amount of bug fixes. Starting with Python 3.6 the asyncio module is no longer provisional and its API is c ... 492 で Python 3.5 はネイティブなコルーチンならびに async / await 構文をサポートしました。Python 3.5 実装にお ... 、 非同期ジェネレータ を定義できるようになりました: async def ticker ( delay , to ): """Yield numbers from 0 ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
18.6. asyncore --- 非同期ソケットハンドラ — Python 3.6.5 ドキュメント 7603
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 18. プロセス間通信とネットワーク » 18.6. asyncore --- 非同期ソケットハンドラ ¶ ソースコード: Lib/ ... asyncore.py バージョン 3.6 で非推奨: 代わりに asyncio を使ってください。 注釈 このモジュールは後方互換 ... 性のためだけに存在します。新しいコードでは asyncio を利用することを推奨します。 このモジュールは、非 ... でマルチスレッドよりも理解しやすく、制御も容易です。 asyncore は多くの複雑な問題を解決済みなので、洗練され、パ ...
https://man.plustar.jp/python/library/asyncore.html - [similar]
26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 7603
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t_item : Callable [[], str ]) -> None : # Body def async_query ( on_success : Callable [[ int ], None ], on ... , int] ... x = c . send ( 'hi' ) # type: List[str] async def bar () -> None : x = await c # type: int class ... typing. AsyncIterable ( Generic[T_co] ) ¶ collections.abc.AsyncI ... terable のジェネリック版です。 class typing. AsyncIterator ( AsyncIterable[T_co] ) ¶ collections.abc. ...
https://man.plustar.jp/python/library/typing.html - [similar]
オブジェクト実装サポート (object implementation support) — Python 3.6.5 ドキュ... 7538
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... バッファオブジェクト構造体 (buffer object structure) async オブジェクト構造体 循環参照ガベージコレクションをサ ...
https://man.plustar.jp/python/c-api/objimpl.html - [similar]
コルーチンオブジェクト — Python 3.6.5 ドキュメント 7473
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ¶ バージョン 3.5 で追加. コルーチンオブジェクトは async キーワードを使って定義した関数が返すオブジェクトで ...
https://man.plustar.jp/python/c-api/coro.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 7408
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... etattrfunc tp_getattr ; setattrfunc tp_setattr ; PyAsyncMethods * tp_as_async ; /* formerly known as tp_com ... tp_setattr と tp_setattro を両方とも継承します。 PyAsyncMethods * tp_as_async ¶ 追加の構造体を指すポインタで ... 。 この構造体は、 C レベルで awaitable プロトコルと asynchronous iterator プロトコルを実装するオブジェクトだ ... けに関係するフィールドを持ちます。 詳しいことは async オブジェクト構造体 を参照してください。 バージョン ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
Python/C API リファレンスマニュアル — Python 3.6.5 ドキュメント 7278
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... バッファオブジェクト構造体 (buffer object structure) async オブジェクト構造体 循環参照ガベージコレクションをサ ...
https://man.plustar.jp/python/c-api/index.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 7278
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ージョン 3.6 で変更: Added platform_version sys. get_asyncgen_hooks ( ) ¶ Returns an asyncgen_hooks object, w ... ected to be either None or functions which take an asynchronous generator iterator as an argument, and are ... の Python 実装で利用できるとは限りません。 sys. set_asyncgen_hooks ( firstiter , finalizer ) ¶ Accepts two o ... yword arguments which are callables that accept an asynchronous generator iterator as an argument. The firs ...
https://man.plustar.jp/python/library/sys.html - [similar]
PREV 1 2 3 NEXT