Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 30 for async (0.012 sec.)
- 18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ — Python 3.6.5 ド... 14572
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
リ » 18. プロセス間通信とネットワーク » 18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ ¶...
ソースコード: Lib/asynchat.py バージョン 3.6 で非推奨: 代わりに asyncio を...
は後方互換性のためだけに存在します。新しいコードでは asyncio を利用することを推奨します。 asynchat を使うと、...
asyncore を基盤とした非同期なサーバ・クライアントをより簡...
- https://man.plustar.jp/python/library/asynchat.html - [similar]
- 8. 複合文 (compound statement) — Python 3.6.5 ドキュメント 11810
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
stmt | try_stmt | with_stmt | funcdef | classdef | async_with_stmt | async_for_stmt | async_funcdef suite :...
バージョン 3.5 で追加. 8.8.1. コルーチン関数定義 ¶ async_funcdef ::= [ decorators ] "async" "def" funcname...
ne を参照)。 コルーチンの本体では、 await 識別子と async 識別子はどれも予約語になります; await 式である asy...
nc for と async with はコルーチンの本体でしか使えません。 Function...
- https://man.plustar.jp/python/reference/compound_stmts.html - [similar]
- 18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 10300
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
リ » 18. プロセス間通信とネットワーク » 18.5. asyncio --- 非同期 I/O、イベントループ、コルーチンおよび...
スク » 18.5.3. タスクとコルーチン ¶ Source code: Lib/asyncio/tasks.py Source code: Lib/asyncio/coroutines.py...
18.5.3.1. コルーチン ¶ asyncio と一緒に使うコルーチンは async def 文を使って実装...
するか、もしくは ジェネレータ を使って実装します。 async def 型のコルーチンはPython 3.5の時に追加されました...
- https://man.plustar.jp/python/library/asyncio-task.html - [similar]
- 32.5. token --- Python 解析木と共に使われる定数 — Python 3.6.5 ドキュメント 9373
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
oken. ELLIPSIS ¶ token. OP ¶ token. AWAIT ¶ token. ASYNC ¶ token. ERRORTOKEN ¶ token. N_TOKENS ¶ token. NT_...
OFFSET ¶ バージョン 3.5 で変更: AWAIT トークンと ASYNC トークンが追加されました。 Python 3.7 以降では、 "...
と "await" は NAME トークンとして扱われ、 AWAIT と ASYNC は削除されます。 関連キーワード: token , 定数 , モ...
ジュール , 数値 , 解析 , 名前 , 言語 , ASYNC , 定義 , ドキュメント 前のトピックへ 32.4. symbol...
- https://man.plustar.jp/python/library/token.html - [similar]
- 10. 完全な文法仕様 — Python 3.6.5 ドキュメント 9309
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
or + decorated : decorators ( classdef | funcdef | async_funcdef ) async_funcdef : ASYNC funcdef funcdef :...
tmt | with_stmt | funcdef | classdef | decorated | async_stmt async_stmt : ASYNC ( funcdef | with_stmt | fo...
test ) comp_iter : comp_for | comp_if comp_for : [ ASYNC ] 'for' exprlist 'in' or_test [ comp_iter ] comp_i...
- https://man.plustar.jp/python/reference/grammar.html - [similar]
- What's New In Python 3.5 — Python 3.6.5 ドキュメント 8984
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
スハイライト ¶ 新たな文法機能: PEP 492 、コルーチン、async 構文と await 構文。 PEP 465 、新たな行列乗算演算子...
になっています。 新しい機能 ¶ PEP 492 - コルーチン、 async と await 構文 ¶ PEP 492 で 待機可能オブジェクト 、...
グを大幅に向上しました。 コルーチン関数は新たな構文 async def を用いて定義されます: >>> async def coro (): ....
らゆるオブジェクトは 待機可能 です。 PEP 492 により async for 文も追加されました。非同期イテラブルを反復する...
- https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
- 6. 式 (expression) — Python 3.6.5 ドキュメント 8594
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
omprehension ::= expression comp_for comp_for ::= [ASYNC] "for" target_list "in" or_test [ comp_iter ] comp...
"漏れる" ことはありません。 Since Python 3.6, in an async def function, an async for clause may be used to i...
terate over a asynchronous iterator . A comprehension in an async def...
function may consist of either a for or async for clause following the leading expression, may c...
- https://man.plustar.jp/python/reference/expressions.html - [similar]
- 用語集 — Python 3.6.5 ドキュメント 8253
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ
...
数の違いは何ですか? 、 PEP 362 を参照してください。 asynchronous context manager (非同期コンテクストマネージ...
aenter__() と __aexit__() メソッドを定義することで async with 文内の環境を管理するオブジェクトです。 PEP 49...
2 で導入されました。 asynchronous generator (非同期ジェネレータ) asynchronous...
generator iterator を返す関数です。 async def で定義されたコルーチン関数に似ていますが、 yie...
- https://man.plustar.jp/python/glossary.html - [similar]
- 17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 8188
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
f , range ( 10 )): print ( i ) # evaluate "f(20)" asynchronously res = pool . apply_async ( f , ( 20 ,)) #...
out = 1 )) # prints "400" # evaluate "os.getpid()" asynchronously res = pool . apply_async ( os . getpid ,...
D of that process # launching multiple evaluations asynchronously *may* use more processes multiple_results...
= [ pool . apply_async ( os . getpid , ()) for i in range ( 4 )] print ([...
- https://man.plustar.jp/python/library/multiprocessing.html - [similar]
- 34.4. winsound --- Windows 用の音声再生インタフェース — Python 3.6.5 ドキュメン... 8058
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
します。システムがブロックしないようにするため、 SND_ASYNC フラグを同時に使わなくてはなりません。 SND_MEMORY...
機能をサポートしていません。従って、このフラグと SND_ASYNC を組み合わせると例外 RuntimeError が送出されます。...
トフォームではサポートされていません。 winsound. SND_ASYNC ¶ 音声を非同期に再生するようにして、関数呼び出しを...
- https://man.plustar.jp/python/library/winsound.html - [similar]