Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 150 for Function (0.005 sec.)
- DTrace と SystemTap で CPython を測定する — Python 3.6.5 ドキュメント 13198
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » DTra
...$! # or: dtrace -l -m python3.6 ID PROVIDER MODULE FUNCTION NAME 29564 python18035 python3.6 _PyEval_EvalFrame...Default function-entry 29565 python18035 python3.6 dtrace_function_...entry function-entry 29566 python18035 python3.6 _PyEval_EvalFram...eDefault function-return 29567 python18035 python3.6 dtrace_function... - https://man.plustar.jp/python/howto/instrumentation.html - [similar]
- Argument Clinic How-To — Python 3.6.5 ドキュメント 11784
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu
...old docstring had a first line that looked like a function signature, throw that line away. (The docstring do...irst line will be built automatically based on the function's signature.) 例: /*[clinic input] Write a pickled...step.) Above the docstring, enter the name of the function, followed by a blank line. This should be the Pyth...on name of the function, and should be the full dotted path to the functio... - https://man.plustar.jp/python/howto/clinic.html - [similar]
- 6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 10275
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...save in the history file. The write_history_file() function uses this value to truncate the history file, by c...6.7.5. 開始フック ¶ readline. set_startup_hook ( [ function ] ) ¶ Set or remove the function invoked by the rl...tartup_hook callback of the underlying library. If function is specified, it will be used as the new hook func...tion; if omitted or None , any function already installed is removed. The hook is called w... - https://man.plustar.jp/python/library/readline.html - [similar]
- 29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 9387
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...tuple of names of free variables (referenced via a function's closure) co_kwonlyargcount number of keyword onl...moved. Otherwise, None is returned. Note that this function only returns a meaningful name for actual Python m...ill still return None . バージョン 3.3 で変更: The function is based directly on importlib . inspect. ismodule...ブジェクトがメソッドの場合真を返します。 inspect. isfunction ( object ) ¶ オブジェクトが Python 関数( lambda 式... - https://man.plustar.jp/python/library/inspect.html - [similar]
- 6. 式 (expression) — Python 3.6.5 ドキュメント 8767
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...ことはありません。 Since Python 3.6, in an async def function, an async for clause may be used to iterate over a...hronous iterator . A comprehension in an async def function may consist of either a for or async for clause fo...hension may suspend the execution of the coroutine function in which it appears. See also PEP 530 . 6.2.5. リス...thon 3.6, if the generator appears in an async def function, then async for clauses and await expressions are... - https://man.plustar.jp/python/reference/expressions.html - [similar]
- 21.27. xmlrpc.server --- 基本的なXML-RPCサーバー — Python 3.6.5 ドキュメント 8440
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...する手段を提供します。 SimpleXMLRPCServer. register_function ( function , name=None ) ¶ XML-RPC リクエストに応じ...を登録します。引数 name が与えられた場合はそれが関数 function に関連付けられます。 そうでない場合は function.__n...オブジェクトを登録します。 オブジェクトは register_function() を使用して登録されていないメソッド名を公開するの...下さい。 SimpleXMLRPCServer. register_introspection_functions ( ) ¶ XML-RPC のイントロスペクション関数、 system... - https://man.plustar.jp/python/library/xmlrpc.server.html - [similar]
- What's New In Python 3.6 — Python 3.6.5 ドキュメント 8066
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...o support path-like objects . All standard library functions operating on paths have been updated to work with...ntation of a path-like object. The built-in open() function has been updated to accept os.PathLike objects, as...have all relevant functions in the os and os.path modules, and most other fun...thLike . The hope is that updating the fundamental functions for operating on file system paths will lead to t... - https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
- What's New In Python 3.5 — Python 3.6.5 ドキュメント 7879
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
..., b , abs_tol = 0.00001 ) False 参考 PEP 485 -- A function for testing approximate equality PEP written by Ch...m parallel bytecode compilation. The compile_dir() function has a corresponding workers parameter. (Contribute...bpo-23171 .) curses ¶ The new update_lines_cols() function updates the LINES and COLS environment variables....d by Berker Peksag in bpo-2052 .) The diff_bytes() function can now compare lists of byte strings. This fixes... - https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
- 10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 7645
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...cmp_to_key ( func ) ¶ 古いスタイルの比較関数を key function に変換します。key 関数を受け取るツール ( sorted()...ve True バージョン 3.4 で追加. functools. reduce ( function , iterable [ , initializer ] ) ¶ 2 引数の function...要素が返されます。 およそ次と等価です: def reduce ( function , iterable , initializer = None ): it = iter ( ite...: value = initializer for element in it : value = function ( value , element ) return value @ functools. sing... - https://man.plustar.jp/python/library/functools.html - [similar]
- インスタンスメソッドオブジェクト(Instance Method Objects) — Python 3.6.5 ドキュ... 7598
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...ance Method Objects) ¶ インスタンスメソッドとは PyCFunction のためのラッパーであり、 PyCFunction をクラスオブジ...されるオブジェクトです。 PyObject * PyInstanceMethod_Function ( PyObject *im ) ¶ インスタンスメソッド im に関連付...ジェクトを返します。 PyObject * PyInstanceMethod_GET_FUNCTION ( PyObject *im ) ¶ PyInstanceMethod_Function() のマ...す。 self は NULL にできません。 PyObject * PyMethod_Function ( PyObject *meth ) ¶ Return value: Borrowed refere... - https://man.plustar.jp/python/c-api/method.html - [similar]
