Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 15 for asynchronous (0.016 sec.)
6. 式 (expression) — Python 3.6.5 ドキュメント 15012
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... an async for clause may be used to iterate over a asynchronous iterator . A comprehension in an async def functio ... c for clauses or await expressions it is called an asynchronous comprehension . An asynchronous comprehension may ... ses and await expressions are permitted as with an asynchronous comprehension. If a generator expression contains ... c for clauses or await expressions it is called an asynchronous generator expression . An asynchronous generator e ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
用語集 — Python 3.6.5 ドキュメント 9178
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... 数の違いは何ですか? 、 PEP 362 を参照してください。 asynchronous context manager (非同期コンテクストマネージャ) __a ... 理するオブジェクトです。 PEP 492 で導入されました。 asynchronous generator (非同期ジェネレータ) asynchronous genera ... c with 文だけでなく await 式もあることがあります。 asynchronous generator iterator (非同期ジェネレータイテレータ) ... って呼び出されたときに awaitable オブジェクトを返す asynchronous iterator です。 この awaitable オブジェクトは、次の ...
https://man.plustar.jp/python/glossary.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 9021
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... ree classes and manipulation. asynchat Support for asynchronous command/response protocols. asyncio Asynchronous I ... es and tasks. asyncore A base class for developing asynchronous socket handling services. atexit Register and exec ... ations, including copying. signal Set handlers for asynchronous events. site Module responsible for site-specific ...
https://man.plustar.jp/python/py-modindex.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 8516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ct. isasyncgenfunction ( object ) ¶ オブジェクトが asynchronous generator 関数の場合に真を返します。例: >>> async ... 加. inspect. isasyncgen ( object ) ¶ オブジェクトが asynchronous generator 関数によって生成された asynchronous gene ... RATOR ¶ The flag is set when the code object is an asynchronous generator function. When the code object is execut ... ed it returns an asynchronous generator object. See PEP 525 for more details. バ ...
https://man.plustar.jp/python/library/inspect.html - [similar]
8.11. pprint --- データ出力の整然化 — Python 3.6.5 ドキュメント 8516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... hon': None, 'stable_version': None, 'summary': 'An asynchronous networking framework written in Python', 'version' ... hon': None, 'stable_version': None, 'summary': 'An asynchronous networking framework written in Python', 'version' ... hon': None, 'stable_version': None, 'summary': 'An asynchronous networking ' 'framework written in ' 'Python', 've ...
https://man.plustar.jp/python/library/pprint.html - [similar]
3. データモデル — Python 3.6.5 ドキュメント 8429
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ェクト を参照してください。 非同期ジェネレータ関数 (asynchronous generator function) async def を使って定義され、 y ... ield 文を使用している関数やメソッドを asynchronous generator function と呼びます。 そのような関数は、 ... 文で関数の本体を実行するのに使えます。 Calling the asynchronous iterator's aiterator.__anext__() method will retur ... , a StopAsyncIteration exception is raised and the asynchronous iterator will have reached the end of the set of v ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 8342
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... り簡潔にコードを書くことができます。 参考 PEP 525 -- Asynchronous Generators PEP written and implemented by Yury Sel ... un in funcs if await condition ()] 参考 PEP 530 -- Asynchronous Comprehensions PEP written and implemented by Yury ... oop.shutdown_asyncgens() to properly close pending asynchronous generators before closing the loop. (Contributed b ... new AsyncGenerator abstract base class represents asynchronous generators. (Contributed by Yury Selivanov in bpo- ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
8.4. collections.abc --- コレクションの抽象基底クラス — Python 3.6.5 ドキュメン... 8255
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ¶ __aiter__ メソッドを提供するクラスの ABC です。 asynchronous iterable の定義も参照してください。 バージョン 3.5 ... よび __anext__ メソッドを提供するクラスの ABC です。 asynchronous iterator の定義も参照してください。 バージョン 3.5 ...
https://man.plustar.jp/python/library/collections.abc.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 8255
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ected to be either None or functions which take an asynchronous generator iterator as an argument, and are used to ... yword arguments which are callables that accept an asynchronous generator iterator as an argument. The firstiter c ... allable will be called when an asynchronous generator is iterated for the first time. The fina ... lizer will be called when an asynchronous generator is about to be garbage collected. バージ ...
https://man.plustar.jp/python/library/sys.html - [similar]
8. 複合文 (compound statement) — Python 3.6.5 ドキュメント 8168
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... async for 文 ¶ async_for_stmt ::= "async" for_stmt asynchronous iterable の iter の実装からは非同期のコードが呼べ、 ... asynchronous iterator の next メソッドからも非同期のコードが呼べ ... nc with 文 ¶ async_with_stmt ::= "async" with_stmt asynchronous context manager は、 enter メソッドと exit メソッド ...
https://man.plustar.jp/python/reference/compound_stmts.html - [similar]
PREV 1 2 NEXT