Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 78 for reference (0.003 sec.)
- 数値型プロトコル (number protocol) — Python 3.6.5 ドキュメント 13995
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...PyObject *o1 , PyObject *o2 ) ¶ Return value: New reference. 成功すると o1 と o2 を加算した結果を返し、失敗する...PyObject *o1 , PyObject *o2 ) ¶ Return value: New reference. 成功すると o1 から o2 を減算した結果を返し、失敗す...PyObject *o1 , PyObject *o2 ) ¶ Return value: New reference. 成功すると o1 と o2 を乗算した結果を返し、失敗する...PyObject *o1 , PyObject *o2 ) ¶ Return value: New reference. 成功すると o1 を o2 で除算した切捨て値を返し、失敗... - https://man.plustar.jp/python/c-api/number.html - [similar]
- Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 10455
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...ncoding , const char *errors ) ¶ Return value: New reference. エンコードされている obj を Unicode オブジェクトに...UNICODE *u , Py_ssize_t size ) ¶ Return value: New reference. size で指定された長さを持つ Py_UNICODE 型バッファ...e_FromObject ( PyObject *obj ) ¶ Return value: New reference. Unicode のサブタイプのインスタンスを、必要な場合は...wchar_t *w , Py_ssize_t size ) ¶ Return value: New reference. size の wchar_t バッファ w から Unicode オブジェク... - https://man.plustar.jp/python/c-api/unicode.html - [similar]
- シーケンス型プロトコル (sequence protocol) — Python 3.6.5 ドキュメント 10069
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...PyObject *o1 , PyObject *o2 ) ¶ Return value: New reference. 成功すると o1 と o2 の連結 (concatenation) を返し...Object *o , Py_ssize_t count ) ¶ Return value: New reference. 成功するとオブジェクト o の count 回繰り返しを返し...PyObject *o1 , PyObject *o2 ) ¶ Return value: New reference. 成功すると o1 と o2 の連結 (concatenation) を返し...Object *o , Py_ssize_t count ) ¶ Return value: New reference. 成功するとオブジェクト o の count 回繰り返しを返し... - https://man.plustar.jp/python/c-api/sequence.html - [similar]
- デスクリプタオブジェクト (descriptor object) — Python 3.6.5 ドキュメント 9807
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
..., struct PyGetSetDef *getset ) ¶ Return value: New reference. PyObject * PyDescr_NewMember ( PyTypeObject *type..., struct PyMemberDef *meth ) ¶ Return value: New reference. PyObject * PyDescr_NewMethod ( PyTypeObject *type..., struct PyMethodDef *meth ) ¶ Return value: New reference. PyObject * PyDescr_NewWrapper ( PyTypeObject *typ...ase *wrapper , void *wrapped ) ¶ Return value: New reference. PyObject * PyDescr_NewClassMethod ( PyTypeObject... - https://man.plustar.jp/python/c-api/descriptor.html - [similar]
- オブジェクトをヒープ上にメモリ確保する — Python 3.6.5 ドキュメント 9229
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...ect_New ( PyTypeObject *type ) ¶ Return value: New reference. PyVarObject * _PyObject_NewVar ( PyTypeObject *ty...pe , Py_ssize_t size ) ¶ Return value: New reference. PyObject * PyObject_Init ( PyObject *op , PyTypeO...bject *type ) ¶ Return value: Borrowed reference. 新たにメモリ確保されたオブジェクト op に対し、型と...初期状態での参照 (initial reference) を初期化します。初期化されたオブジェクトを返します... - https://man.plustar.jp/python/c-api/allocation.html - [similar]
- Function オブジェクト — Python 3.6.5 ドキュメント 9105
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...ct *code , PyObject *globals ) ¶ Return value: New reference. コードオブジェクト code に関連付けられた新しい関数...globals , PyObject *qualname ) ¶ Return value: New reference. PyFunction_New() に似ていますが、関数オブジェクト..._GetCode ( PyObject *op ) ¶ Return value: Borrowed reference. 関数オブジェクト op に関連付けられたコードオブジェ...tGlobals ( PyObject *op ) ¶ Return value: Borrowed reference. 関数オブジェクト op に関連付けられたglobals辞書を... - https://man.plustar.jp/python/c-api/function.html - [similar]
- オブジェクトプロトコル (object protocol) — Python 3.6.5 ドキュメント 8788
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...ect *o , PyObject *attr_name ) ¶ Return value: New reference. オブジェクト o から、名前 attr_name の属性を取得し...t *o , const char *attr_name ) ¶ Return value: New reference. オブジェクト o から、名前 attr_name の属性を取得し...o1 , PyObject *o2 , int opid ) ¶ Return value: New reference. o1 と o2 を opid に指定した演算によって比較します...PyObject_Repr ( PyObject *o ) ¶ Return value: New reference. オブジェクト o の文字列表現を計算します。成功する... - https://man.plustar.jp/python/c-api/object.html - [similar]
- 辞書オブジェクト (dictionary object) — Python 3.6.5 ドキュメント 8650
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...ます。 PyObject * PyDict_New ( ) ¶ Return value: New reference. 空の新たな辞書を返します。失敗すると NULL を返しま...roxy_New ( PyObject *mapping ) ¶ Return value: New reference. あるマップ型オブジェクトに対して、読み出し専用に制...* PyDict_Copy ( PyObject *p ) ¶ Return value: New reference. p と同じキーと値のペアが入った新たな辞書を返します...ject *p , PyObject *key ) ¶ Return value: Borrowed reference. 辞書 p 内で key をキーとするオブジェクトを返します... - https://man.plustar.jp/python/c-api/dict.html - [similar]
- リフレクション — Python 3.6.5 ドキュメント 8595
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...* PyEval_GetBuiltins ( ) ¶ Return value: Borrowed reference. 現在の実行フレーム内のビルトインの辞書か、もし実行...ct * PyEval_GetLocals ( ) ¶ Return value: Borrowed reference. 現在の実行フレーム内のローカル変数の辞書か、実行中...t * PyEval_GetGlobals ( ) ¶ Return value: Borrowed reference. 現在の実行フレームのグローバル変数の辞書か、実行中...ect * PyEval_GetFrame ( ) ¶ Return value: Borrowed reference. 現在のスレッド状態のフレームを返します。現在実行中... - https://man.plustar.jp/python/c-api/reflection.html - [similar]
- インスタンスメソッドオブジェクト(Instance Method Objects) — Python 3.6.5 ドキュ... 8333
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...bject *func , PyObject *self ) ¶ Return value: New reference. 任意の呼び出し可能オブジェクト func とメソッドが束...nction ( PyObject *meth ) ¶ Return value: Borrowed reference. メソッド meth に関連付けられている関数オブジェクト...NCTION ( PyObject *meth ) ¶ Return value: Borrowed reference. PyMethod_Function() のマクロ版で、エラーチェックを...d_Self ( PyObject *meth ) ¶ Return value: Borrowed reference. メソッド meth に関連付けられたインスタンスを返しま... - https://man.plustar.jp/python/c-api/method.html - [similar]
