Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 150 for function (0.066 sec.)
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 6277
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を避ける際は コルーチン関数 と呼びます ( iscoroutinefunction() は True を返します)。 コルーチン関数の呼び出しに ... r schedule its execution using the ensure_future() function or the AbstractEventLoop.create_task() method. コル ... ented as coroutines, even if they are plain Python functions returning a Future . This is intentional to have ... a freedom of tweaking the implementation of these functions in the future. If such a function is needed to be ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
具象オブジェクト (concrete object) レイヤ — Python 3.6.5 ドキュメント 6231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... メソッドとスロット メソッドおよびスロット関数 (slot function) タプルオブジェクト (tuple object) Struct Sequence ... 書オブジェクト (dictionary object) Set オブジェクト Function オブジェクト ¶ Function オブジェクト インスタンスメ ... ブジェクト (sequence object) Container オブジェクト Function オブジェクト その他のオブジェクト 前のトピックへ 古 ...
https://man.plustar.jp/python/c-api/concrete.html - [similar]
オペレーティングシステム関連のユーティリティ — Python 3.6.5 ドキュメント 6231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... oding (or an alias), and mbstowcs() and wcstombs() functions use the ISO-8859-1 encoding. the current locale e ... oding (or an alias), and mbstowcs() and wcstombs() functions uses the ISO-8859-1 encoding. the current locale ... FinalizeEx() and then calls the standard C library function exit(status) . If Py_FinalizeEx() indicates an err ... y_AtExit ( void ( *func )() ) ¶ Register a cleanup function to be called by Py_FinalizeEx() . The cleanup func ...
https://man.plustar.jp/python/c-api/sys.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 6231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( "Listening on port 8000..." ) server . register_function ( is_even , "is_even" ) server . serve_forever () ... ( "Listening on port 8000..." ) server . register_function ( today , "today" ) server . serve_forever () 上記 ... ( "Listening on port 8000..." ) server . register_function ( python_logo , 'python_logo' ) server . serve_for ... ( "Listening on port 8000..." ) server . register_function ( add , 'add' ) server . serve_forever () 上記のサ ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
共通のオブジェクト構造体 (common object structure) — Python 3.6.5 ドキュメント 6184
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... されます。 _PyObject_EXTRA_INIT 1 , type , size , PyCFunction ¶ ほとんどの Python の呼び出し可能オブジェクトを C ... の型の関数は新たな参照を返さなければなりません。 PyCFunctionWithKeywords ¶ キーワード引数をとるPythonの呼び出し ... 型の値を返します。戻り値の意味については、上記の PyCFunction を参照して下さい。 PyMethodDef ¶ 拡張型のメソッドを ... ド C の型 意味 ml_name char * メソッド名 ml_meth PyCFunction C 実装へのポインタ ml_flags int 呼び出しをどのよう ...
https://man.plustar.jp/python/c-api/structures.html - [similar]
マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 6137
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... t provides mapping protocol, and 0 otherwise. This function always succeeds. Py_ssize_t PyMapping_Size ( PyObj ... quivalent to the Python expression key in o . This function always succeeds. int PyMapping_HasKey ( PyObject * ... quivalent to the Python expression key in o . This function always succeeds. PyObject * PyMapping_Keys ( PyObj ...
https://man.plustar.jp/python/c-api/mapping.html - [similar]
4. その他の制御フローツール — Python 3.6.5 ドキュメント 6137
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... b = b , a + b ... print () ... >>> # Now call the function we just defined: ... fib ( 2000 ) 0 1 1 2 3 5 8 13 ... 値は、インタプリタからはユーザ定義関数 (user-defined function) として認識される型を持ちます。この値は別の名前に代 ... 一般的な名前変更のメカニズムとして働きます: >>> fib <function fib at 10042ed0> >>> f = fib >>> f ( 100 ) 0 1 1 2 ... 受け取れません。この制限により失敗する例は: >>> def function ( a ): ... pass ... >>> function ( 0 , a = 0 ) Tra ...
https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 6090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Confer the parameter detect_types of the connect() function for how the type detection works. Note that the ca ... given sql_script , and returns the cursor. create_function ( name , num_params , func ) ¶ Creates a user-defi ... ned function that you can later use from within SQL statements ... under the function name name . num_params is the number of parameters ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 6044
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... een immediately change to the new definition. This function is a no-op on most terminals; it is active only if ... ue of the given window's mouse event mask. If this function is never called, no mouse events are ever reported ... 。 curses. resize_term ( nlines , ncols ) ¶ Backend function used by resizeterm() , performing most of the work ... ese areas with appropriate data. The resize_term() function attempts to resize all windows. However, due to th ...
https://man.plustar.jp/python/library/curses.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 5997
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... number = get_phone_number . __wrapped__ # uncached function (By Nick Coghlan and Terrence Cole; bpo-9567 , bpo ... が追加されました。これは旧式の比較関数をモダンな key function に変換します: >>> # locale-aware sort order >>> so ... れて6つの新たな関数が追加されました。 The isfinite() function provides a reliable and fast way to detect special ... o be a keyword argument . The user-supplied filter function accepts a TarInfo object and returns an updated Ta ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT