Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 163 for TYPE (0.118 sec.)
辞書オブジェクト (dictionary object) — Python 3.6.5 ドキュメント 5240
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ブタイプは Python の辞書オブジェクトを表現します。 PyTypeObject PyDict_Type ¶ この PyTypeObject のインスタン ... ップ型オブジェクトに対して、読み出し専用に制限された types.MappingProxyType オブジェクトを返します。通常、こ ... の関数は動的でないクラス型 (non-dynamic class type) のクラス辞書が変更されないようにビューを作成するた ... le )でなければなりません; ハッシュ可能でない場合、 TypeError を送出します。成功した場合には 0 を、失敗した ...
https://man.plustar.jp/python/c-api/dict.html - [similar]
Python モジュールのインストール (旧版) — Python 3.6.5 ドキュメント 5240
ナビゲーション 索引 モジュール | 前へ | Python » 3.6.5 ドキュメント » Python モジュールのインスト ... and typing a few simple commands. Under Unix, just type python at the shell prompt. Under Windows, choose ... mmand line) . Once the interpreter is started, you type Python code at the prompt. For example, on my Linu ... x system, I type the three Python statements shown below, and get t ... ec-prefix : Python 2.4 (#26, Aug 7 2004, 17:19:02) Type "help", "copyright", "credits" or "license" for mo ...
https://man.plustar.jp/python/install/index.html - [similar]
22.2. aifc --- AIFFおよびAIFCファイルの読み書き — Python 3.6.5 ドキュメント 5240
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の中のオーディオフレーム数を返します。 aifc. getcomptype ( ) ¶ オーディオファイルで使用されている圧縮形式を ... 同じ (nchannels, sampwidth, framerate, nframes, comptype, compname) の namedtuple() を返します。 aifc. getm ... シークに対応していなければなりません。 aifc. setcomptype ( type , name ) ¶ 圧縮形式を設定します。もし設定し ... 数は人間が読める圧縮形式の説明を bytes にしたもので、type 引数は4バイトの bytes でなければなりません。現在の ...
https://man.plustar.jp/python/library/aifc.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 5240
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... んでください (例: r'(\Deleted)' )。 各命令はタプル: (type, [data, ...]) を返し、 type は通常 'OK' または 'NO ... 、そうでなければ None を返します。通常の形式 (usual type) ではなく指定したコードを返します。 IMAP4. search ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 5240
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... environ ) status = '200 OK' headers = [( 'Content-type' , 'text/plain; charset=utf-8' )] start_response ( ... tus = '200 OK' # HTTP Status headers = [( 'Content-type' , 'text/plain' )] # HTTP Headers start_response ( ... info タプルをサーバログに記録します。 exc_info は (type, value, traceback) のタプルです。デフォルトの実装は ... tus = '200 OK' # HTTP Status headers = [( 'Content-type' , 'text/plain; charset=utf-8' )] # HTTP Headers s ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
Boolean オブジェクト — Python 3.6.5 ドキュメント 5195
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... す。 int PyBool_Check ( PyObject *o ) ¶ o が PyBool_Type の場合に真を返します。 PyObject * Py_False ¶ Pytho ...
https://man.plustar.jp/python/c-api/bool.html - [similar]
コードオブジェクト — Python 3.6.5 ドキュメント 5195
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 造体。この型のフィールドは何時でも変更され得ます。 PyTypeObject PyCode_Type ¶ これは Python の code 型を表現 ... する PyTypeObject のインスタンスです。 int PyCode_Check ( PyOb ...
https://man.plustar.jp/python/c-api/code.html - [similar]
整数型オブジェクト (integer object) — Python 3.6.5 ドキュメント 5195
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ます。 On error, most PyLong_As* APIs return (return type)-1 which cannot be distinguished from a number. Us ... この PyObject のサブタイプは整数型を表現します。 PyTypeObject PyLong_Type ¶ この PyTypeObject のインスタン ... e. バージョン 3.1 で変更: 負 pylong を指定した際に TypeError ではなく、 OverflowError を送出するようになり ...
https://man.plustar.jp/python/c-api/long.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 5195
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... リの関数やシステムコールを呼び出すことである場合、 ctypes あるいは cffi ライブラリの利用を検討すべきです。こ ... せん --- ファイルが開けなかったことを表すのに PyExc_TypeError を使ったりはしないでください (この場合はおそら ... がある場合には、 PyArg_ParseTuple() はたいてい PyExc_TypeError を送出します。引数の値が特定の範囲を超えていた ... Callable_Check ( temp )) { PyErr_SetString ( PyExc_TypeError , "parameter must be callable" ); return NULL ...
https://man.plustar.jp/python/extending/extending.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 5195
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... )->field = value), 1 \ : 0 \ ) \ #define PyCapsule_Type PyCObject_Type #define PyCapsule_CheckExact(capsul ...
https://man.plustar.jp/python/howto/cporting.html - [similar]