Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 33 for operation (0.028 sec.)
Python 言語リファレンス — Python 3.6.5 ドキュメント 14711
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 術演算とビット単位演算 (unary arithmetic and bitwise operation) 6.7. 二項算術演算 (binary arithmetic operation) 6 ... .8. シフト演算 (shifting operation) 6.9. ビット単位演算の二項演算 (binary bitwise ope ... ration) 6.10. 比較 6.11. ブール演算 (boolean operation) 6.12. 条件式 (Conditional Expressions) 6.13. ラム ... 法仕様 関連キーワード: 言語 , リファレンス , 演算 , operation , モジュール , 組み込み , 入力 , arithmetic , 標準 ...
https://man.plustar.jp/python/reference/index.html - [similar]
16.15. errno --- 標準の errno システムシンボル — Python 3.6.5 ドキュメント 11759
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... があります: errno. EPERM ¶ 許可されていない操作です (Operation not permitted) errno. ENOENT ¶ そのようなファイルま ... ntered) errno. EWOULDBLOCK ¶ 操作がブロックします (Operation would block) errno. ENOMSG ¶ 指定された型のメッセー ... TSOCK ¶ 非ソケットに対するソケット操作です (Socket operation on non-socket) errno. EDESTADDRREQ ¶ 目的アドレスが ... PP ¶ 通信端点に対してサポートされていない操作です (Operation not supported on transport endpoint) errno. EPFNOS ...
https://man.plustar.jp/python/library/errno.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 10187
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 関数 を組み合わせた例: import asyncio async def slow_operation ( future ): await asyncio . sleep ( 1 ) future . s ... asyncio . Future () asyncio . ensure_future ( slow_operation ( future )) loop . run_until_complete ( future ) p ... て書くこともできます: import asyncio async def slow_operation ( future ): await asyncio . sleep ( 1 ) future . s ... asyncio . Future () asyncio . ensure_future ( slow_operation ( future )) future . add_done_callback ( got_resul ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
6. 式 (expression) — Python 3.6.5 ドキュメント 10187
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 術演算とビット単位演算 (unary arithmetic and bitwise operation) ¶ 全ての単項算術演算とビット単位演算は、同じ優先順 ... 送出されます。 6.7. 二項算術演算 (binary arithmetic operation) ¶ 二項算術演算は、慣習的な優先順位を踏襲しています ... ず共通の型に変換されます。 6.8. シフト演算 (shifting operation) ¶ シフト演算は、算術演算よりも低い優先順位を持って ... ます。 6.9. ビット単位演算の二項演算 (binary bitwise operation) ¶ 以下の三つのビット単位演算には、それぞれ異なる優 ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 9000
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... k ( release_special_resource , special ) # Perform operations that use the acquired resources 上の例にあるように ... ります: cleanup_needed = True try : result = perform_operation () if result : cleanup_needed = False finally : if ... . callback ( cleanup_resources ) result = perform_operation () if result : stack . pop_all () これにより、別の ... ack ( cleanup_resources ) as cb : result = perform_operation () if result : cb . cancel () もしリソースのクリー ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
29.14. fpectl --- 浮動小数点例外の制御 — Python 3.6.5 ドキュメント 9000
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... E-754例外Division by Zero、OverflowあるいはInvalid Operationが起きたときはいつでも SIGFPE が生成させるように、ユ ... 4例外であるDivision by Zero、OverflowまたはInvalid operationの一つを発生する浮動小数点演算は、次にこの標準Python ...
https://man.plustar.jp/python/library/fpectl.html - [similar]
メモリ管理 — Python 3.6.5 ドキュメント 8599
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... NULL ) return PyErr_NoMemory (); ... Do some I / O operation involving buf ... res = PyBytes_FromString ( buf ) ... NULL ) return PyErr_NoMemory (); /* ...Do some I/O operation involving buf... */ res = PyBytes_FromString ( buf ... NULL ) return PyErr_NoMemory (); /* ...Do some I/O operation involving buf... */ res = PyBytes_FromString ( buf ...
https://man.plustar.jp/python/c-api/memory.html - [similar]
35.9. fcntl --- fcntl および ioctl システムコール — Python 3.6.5 ドキュメント 8599
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 0 >>> buf array('h', [13341]) fcntl. flock ( fd , operation ) ¶ ファイル記述子 fd ( fileno() メソッドを提供して ... いるファイルオブジェクトも含む) に対してロック操作 operation を実行します。 詳細は Unix マニュアルの flock(2) を ...
https://man.plustar.jp/python/library/fcntl.html - [similar]
初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 7813
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... obal interpreter lock . ... Do some blocking I / O operation ... Reacquire the global interpreter lock . Restor ... Py_BEGIN_ALLOW_THREADS ... Do some blocking I / O operation ... Py_END_ALLOW_THREADS Py_BEGIN_ALLOW_THREADS マ ... = PyEval_SaveThread (); ... Do some blocking I / O operation ... PyEval_RestoreThread ( _save ); これらの関数の ...
https://man.plustar.jp/python/c-api/init.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 7620
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... r parsing headers in a string (this is an uncommon operation), use: headers = Parser ( policy = default ) . par ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
PREV 1 2 3 4 NEXT