Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 50 for Generator (0.025 sec.)
6. 式 (expression) — Python 3.6.5 ドキュメント 14347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... form | list_display | dict_display | set_display | generator_expression | yield_atom 6.2.1. 識別子 (identifier、 ... 使われます。 6.2.8. ジェネレータ式 ¶ ジェネレータ式 (generator expression) とは、丸括弧を使ったコンパクトなジェネ ... レータ表記法です: generator_expression ::= "(" expression comp_for ")" ジェネレ ... l) 節を参照してください。 Since Python 3.6, if the generator appears in an async def function, then async for c ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 14167
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... メールと MIME 処理のためのパッケージ » 19.1.3. email.generator : MIME 文書の生成 ¶ ソースコード: Lib/email/genera ... cing a serialized representation is the job of the generator classes. As with the email.parser module, you aren ... 't limited to the functionality of the bundled generator; you could write one from scratch yourself. Howeve ... r the bundled generator knows how to generate most email in a standards-co ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 9850
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... されたものを含む) の場合に真を返します。 inspect. isgeneratorfunction ( object ) ¶ object が Python のジェネレー ... タ関数の場合真を返します。 inspect. isgenerator ( object ) ¶ object がジェネレータの場合真を返しま ... nfunction ( object ) ¶ オブジェクトが asynchronous generator 関数の場合に真を返します。例: >>> async def agen ( ... sasyncgen ( object ) ¶ オブジェクトが asynchronous generator 関数によって生成された asynchronous generator iter ...
https://man.plustar.jp/python/library/inspect.html - [similar]
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 9144
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... r components of the package are the parser and the generator . The parser takes the serialized version of an em ... nverts it into a tree of EmailMessage objects. The generator takes an EmailMessage and turns it back into a ser ... ialized byte stream. (The parser and generator also handle streams of text characters, but this u ... t is the policy module. Every EmailMessage , every generator , and every parser has an associated policy object ...
https://man.plustar.jp/python/library/email.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 8482
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... when it is created. When a message is passed to a generator , the generator uses the policy from the message b ... lt, but you can also pass a specific policy to the generator that will override the one stored on the message o ... ail import message_from_binary_file >>> from email.generator import BytesGenerator >>> from email import policy ... ] . addresses [ 0 ]], stdin = PIPE ) >>> g = BytesGenerator ( p . stdin , policy = msg . policy . clone ( line ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
用語集 — Python 3.6.5 ドキュメント 8061
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... ェクトです。 PEP 492 で導入されました。 asynchronous generator (非同期ジェネレータ) asynchronous generator iterat ... けでなく await 式もあることがあります。 asynchronous generator iterator (非同期ジェネレータイテレータ) asynchrono ... us generator 関数で生成されるオブジェクトです。 これは、 __anex ... and pending try-statements). When the asynchronous generator iterator effectively resumes with another awaitabl ...
https://man.plustar.jp/python/glossary.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 8061
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , since the specified policy will be passed to the Generator . Flattening the message may trigger changes to th ... x mbox format. For more flexibility, instantiate a Generator instance and use its flatten() method directly. Fo ... r example: from io import StringIO from email.generator import Generator fp = StringIO () g = Generator ( ... racter" code points. (See also as_bytes() and BytesGenerator .) バージョン 3.4 で変更: policy キーワード引数が追 ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7760
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , since the specified policy will be passed to the Generator . Flattening the message may trigger changes to th ... you are dealing with multiple messages. See email.generator.Generator for a more flexible API for serializing ... ce the specified policy will be passed to the BytesGenerator . Flattening the message may trigger changes to th ... you are dealing with multiple messages. See email.generator.BytesGenerator for a more flexible API for seriali ...
https://man.plustar.jp/python/library/email.message.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 7700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... できます。 @ asyncio. coroutine ¶ Decorator to mark generator-based coroutines. This enables the generator use y ... to call async def coroutines, and also enables the generator to be called by async def coroutines, for instance ... ーチン自身をデコレートする必要はありません。 If the generator is not yielded from before it is destroyed, an err ... bj is a coroutine object , which may be based on a generator or an async def coroutine. asyncio. iscoroutinefun ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 7640
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... outine のジェネリック版です。 変性と型変数の順序は Generator のものと対応しています。例えば次のようになります: ... ック版です。 バージョン 3.6.1 で追加. class typing. Generator ( Iterator[T_co], Generic[T_co, T_contra, V_co] ) ... ¶ ジェネレータはジェネリック型 Generator[YieldType, SendType, ReturnType] によってアノテーシ ... ョンを付けられます。例えば: def echo_round () -> Generator [ int , float , str ]: sent = yield 0 while sent > ...
https://man.plustar.jp/python/library/typing.html - [similar]
PREV 1 2 3 4 5 NEXT