Python 3.6.5 ドキュメント 検索
Results of 1 - 1 of about 1 for CustomObject (0.004 sec.)
- 2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 9414
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...
yObject_HEAD /* Type-specific fields go here. */ } CustomObject ; static PyTypeObject CustomType = { PyVarObject_H...
LL , 0 ) . tp_name = "custom.Custom" , . tp_doc = "Custom objects" , . tp_basicsize = sizeof ( CustomObject ), . t...
ます: Custom オブジェクト が何を含んでいるか: これが CustomObject 構造体で、 Custom インスタンスごとに1回だけメモリ確...
まず最初はこれです: typedef struct { PyObject_HEAD } CustomObject ; これが Custom オブジェクトの内容です。 PyObject_...
- https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
PREV
1
NEXT