Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 150 for function (0.072 sec.)
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 6464
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 4, 9, 16, 25, 36, 49, 64, 81] itertools. starmap ( function , iterable ) ¶ iterables の要素を引数として funtio ... n を計算するイテレータを作成します。 function の引数が一つの iterable からタプルに既にグループ化 ... の代わりに使用します。 map() と starmap() の違いは function(a,b) と function(*c) の差に似ています。およそ次と等 ... 価です: def starmap ( function , iterable ): # starmap(pow, [(2,5), (3,2), (10,3) ...
https://man.plustar.jp/python/library/itertools.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 6464
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... by the interpreter, regardless of their size. This function is mainly useful for tracking and debugging memory ... representing filenames as bytes is also supported. Functions accepting or returning filenames should support e ... er and finalizer are expected to be either None or functions which take an asynchronous generator iterator as ... .6 で追加: See PEP 525 for more details. 注釈 This function has been added on a provisional basis (see PEP 411 ...
https://man.plustar.jp/python/library/sys.html - [similar]
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 6464
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ース項目は 4 要素のタプル ( filename , line number , function name , text ) で、スタックトレースに対して通常出力 ... を示しています: >>> import traceback >>> def another_function (): ... lumberstack () ... >>> def lumberstack (): ... pr ( traceback . format_stack ())) ... >>> another_function () File "<doctest>", line 10, in <module> another_ ... function() File "<doctest>", line 3, in another_function lumberstack() File "<doctest>", line 6, in lumbers ...
https://man.plustar.jp/python/library/traceback.html - [similar]
初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 6418
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... Py_Initialize() and subsequent use of Python/C API functions, and destroy all sub-interpreters (see Py_NewInte ... * Perform Python actions here. */ result = CallSomeFunction (); /* evaluate result or handle exception */ /* R ... ¶ The value for the what parameter to Py_tracefunc functions when a call is about to return. int PyTrace_C_CAL ... racefunc func , PyObject *obj ) ¶ Set the profiler function to func . The obj parameter is passed to the funct ...
https://man.plustar.jp/python/c-api/init.html - [similar]
モジュールオブジェクト (module object) — Python 3.6.5 ドキュメント 6371
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... y m_reload ¶ traverseproc m_traverse ¶ A traversal function to call during GC traversal of the module object, ... or NULL if not needed. This function may be called before module state is allocated ( P ... te() may return NULL ), and before the Py_mod_exec function is executed. inquiry m_clear ¶ A clear function to ... of the module object, or NULL if not needed. This function may be called before module state is allocated ( P ...
https://man.plustar.jp/python/c-api/module.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 6371
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... rofunc tp_getattro ; setattrofunc tp_setattro ; /* Functions to access object as input/output buffer */ PyBuff ... char * tp_doc ; /* Documentation string */ /* call function for all accessible objects */ traverseproc tp_trav ... ガベージコレクタのためのトラバーサル関数 (traversal function) を指します。 Py_TPFLAGS_HAVE_GC がセットされている ... ポインタで、ガベージコレクタにおける消去関数 (clear function) を指します。 Py_TPFLAGS_HAVE_GC がセットされている ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
用語集 — Python 3.6.5 ドキュメント 6324
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... 装されます。 PEP 492 を参照してください。 coroutine function (コルーチン関数) coroutine オブジェクトを返す関数で ... とに注意してください。 PEP 238 を参照してください。 function (関数) 呼び出し側に値を返す一連の文のことです。関数 ... 仮引数 、 メソッド 、 関数定義 を参照してください。 function annotation An arbitrary metadata value associated ... with a function parameter or return value. Its syntax is explained ...
https://man.plustar.jp/python/glossary.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 6324
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... content ( msg , *args , **kw ) ¶ Look up a handler function based on the mimetype of msg (see next paragraph), ... , raise a TypeError ; otherwise look up a handler function based on the type of obj (see next paragraph), cal ... clear_content() on the msg , and call the handler function, passing through all arguments. The expectation is ... ). add_get_handler ( key , handler ) ¶ Record the function handler as the handler for key . For the possible ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 6324
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... from unittest.mock import create_autospec >>> def function ( a , b , c ): ... pass ... >>> mock_function = cr ... eate_autospec ( function , return_value = 'fishy' ) >>> mock_function ( 1 , ... 2 , 3 ) 'fishy' >>> mock_function . assert_called_once_with ( 1 , 2 , 3 ) >>> mock_f ... します: >>> @patch ( '__main__.SomeClass' ) ... def function ( normal_argument , mock_class ): ... print ( mock ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
Function オブジェクト — Python 3.6.5 ドキュメント 6277
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ュアル » 具象オブジェクト (concrete object) レイヤ » Function オブジェクト ¶ Functionオブジェクト固有の関数はわず ... かです。 PyFunctionObject ¶ 関数に使われるCの構造体。 PyTypeObject PyF ... の関数型を表します。これは Python プログラムに types.FunctionType として公開されています。 int PyFunction_Check ... ( PyObject *o ) ¶ o が関数オブジェクト ( PyFunction_Type 型なら) なら true を返します。引数は NULL であ ...
https://man.plustar.jp/python/c-api/function.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT