Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 7 of about 7 for PyModuleDef (0.018 sec.)
モジュールオブジェクト (module object) — Python 3.6.5 ドキュメント 13377
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ロックへのポインター) か、なければ NULL を返します。 PyModuleDef.m_size を参照してください。 PyModuleDef * PyModule ... yObject *module ) ¶ モジュールが作られる元となった PyModuleDef 構造体へのポインタを返します。 モジュールが定義によ ... そのものを返し"多段階初期化"を要求しても構いません。 PyModuleDef ¶ モジュール定義構造体はモジュールオブジェクトを生 ... 静的に初期化されたこの型の変数が1つだけ存在します。 PyModuleDef_Base m_base ¶ このメンバーは常に PyModuleDef_HEAD_ ...
https://man.plustar.jp/python/c-api/module.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 9433
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... DEFAULT , . tp_new = PyType_GenericNew , }; static PyModuleDef custommodule = { PyModuleDef_HEAD_INIT , . m_name ... embers , . tp_methods = Custom_methods , }; static PyModuleDef custommodule = { PyModuleDef_HEAD_INIT , . m_name ... o PyInit_custom2() , update the module name in the PyModuleDef struct, and update the full class name in the PyTy ... hods , . tp_getset = Custom_getsetters , }; static PyModuleDef custommodule = { PyModuleDef_HEAD_INIT , . m_name ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 8306
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... 体から参照されていなければなりません: static struct PyModuleDef spammodule = { PyModuleDef_HEAD_INIT , "spam" , /* ... thon 3.5 の新機能) を使っています。 PyInit_spam が PyModuleDef を返し、モジュールの生成は後に import 機構が行いま ... NULL , 0 , NULL } /* sentinel */ }; static struct PyModuleDef keywdargmodule = { PyModuleDef_HEAD_INIT , "keywda ...
https://man.plustar.jp/python/extending/extending.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 8306
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... STATE ( m ) -> error ); return 0 ; } static struct PyModuleDef moduledef = { PyModuleDef_HEAD_INIT , "myextension ...
https://man.plustar.jp/python/howto/cporting.html - [similar]
1. 他のアプリケーションへの Python の埋め込み — Python 3.6.5 ドキュメント 8179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... process." }, { NULL , NULL , 0 , NULL } }; static PyModuleDef EmbModule = { PyModuleDef_HEAD_INIT , "emb" , NULL ...
https://man.plustar.jp/python/extending/embedding.html - [similar]
4. C および C++ 拡張のビルド — Python 3.6.5 ドキュメント 8033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... lename ( void ) ¶ この関数は初期化がモジュールか、 PyModuleDef インスタンスを返します。 詳しいことは Cモジュールの ...
https://man.plustar.jp/python/extending/building.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 7906
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... one seen by Python. Check the name defined in the PyModuleDef or PyTypeObject as appropriate. When you declare a ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
PREV 1 NEXT