René's URL Explorer Experiment


Title: 1. 以 C 或 C++ 擴充 Python — Python 3.14.0 說明文件

Mail addresses
philbrick@hks.com

direct link

Domain: python.github.io

readthedocs-addons-api-version1

Links:

https://www.python.org/
目錄https://python.github.io/python-docs-zh-tw/contents.html
1. 以 C 或 C++ 擴充 Pythonhttps://python.github.io/python-docs-zh-tw/extending/extending.html
1.1. 一個簡單範例https://python.github.io/python-docs-zh-tw/extending/extending.html#a-simple-example
1.2. 插曲:錯誤與例外https://python.github.io/python-docs-zh-tw/extending/extending.html#intermezzo-errors-and-exceptions
1.3. 回到範例https://python.github.io/python-docs-zh-tw/extending/extending.html#back-to-the-example
1.4. 模組的方法表和初始化函式https://python.github.io/python-docs-zh-tw/extending/extending.html#the-module-s-method-table-and-initialization-function
1.5. Compilation and Linkagehttps://python.github.io/python-docs-zh-tw/extending/extending.html#compilation-and-linkage
1.6. Calling Python Functions from Chttps://python.github.io/python-docs-zh-tw/extending/extending.html#calling-python-functions-from-c
1.7. Extracting Parameters in Extension Functionshttps://python.github.io/python-docs-zh-tw/extending/extending.html#extracting-parameters-in-extension-functions
1.8. Keyword Parameters for Extension Functionshttps://python.github.io/python-docs-zh-tw/extending/extending.html#keyword-parameters-for-extension-functions
1.9. Building Arbitrary Valueshttps://python.github.io/python-docs-zh-tw/extending/extending.html#building-arbitrary-values
1.10. 參照計數https://python.github.io/python-docs-zh-tw/extending/extending.html#reference-counts
1.10.1. Python 中的參照計數https://python.github.io/python-docs-zh-tw/extending/extending.html#reference-counting-in-python
1.10.2. Ownership Ruleshttps://python.github.io/python-docs-zh-tw/extending/extending.html#ownership-rules
1.10.3. Thin Icehttps://python.github.io/python-docs-zh-tw/extending/extending.html#thin-ice
1.10.4. NULL 指標https://python.github.io/python-docs-zh-tw/extending/extending.html#null-pointers
1.11. Writing Extensions in C++https://python.github.io/python-docs-zh-tw/extending/extending.html#writing-extensions-in-c
1.12. Providing a C API for an Extension Modulehttps://python.github.io/python-docs-zh-tw/extending/extending.html#providing-a-c-api-for-an-extension-module
擴充和嵌入 Python 直譯器https://python.github.io/python-docs-zh-tw/extending/index.html
2. 擴充型別定義教學https://python.github.io/python-docs-zh-tw/extending/newtypes_tutorial.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/extending/extending.rst?plain=1
索引https://python.github.io/python-docs-zh-tw/genindex.html
模組https://python.github.io/python-docs-zh-tw/py-modindex.html
下一頁https://python.github.io/python-docs-zh-tw/extending/newtypes_tutorial.html
上一頁https://python.github.io/python-docs-zh-tw/extending/index.html
Pythonhttps://www.python.org/
3.14.0 Documentationhttps://python.github.io/python-docs-zh-tw/index.html
擴充和嵌入 Python 直譯器https://python.github.io/python-docs-zh-tw/extending/index.html
1. 以 C 或 C++ 擴充 Pythonhttps://python.github.io/python-docs-zh-tw/extending/extending.html
https://python.github.io/python-docs-zh-tw/extending/extending.html#extending-python-with-c-or-c
ctypeshttps://python.github.io/python-docs-zh-tw/library/ctypes.html#module-ctypes
cffihttps://cffi.readthedocs.io/
https://python.github.io/python-docs-zh-tw/extending/extending.html#a-simple-example
[1]https://python.github.io/python-docs-zh-tw/extending/extending.html#id5
字串與緩衝區https://python.github.io/python-docs-zh-tw/c-api/arg.html#arg-parsing-string-and-buffers
Py_LIMITED_APIhttps://python.github.io/python-docs-zh-tw/c-api/stable.html#c.Py_LIMITED_API
Py_LIMITED_APIhttps://python.github.io/python-docs-zh-tw/c-api/stable.html#c.Py_LIMITED_API
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
https://python.github.io/python-docs-zh-tw/extending/extending.html#intermezzo-errors-and-exceptions
sys.exc_info()https://python.github.io/python-docs-zh-tw/library/sys.html#sys.exc_info
PyErr_SetString()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_SetString
PyExc_ZeroDivisionErrorhttps://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyExc_ZeroDivisionError
PyErr_SetFromErrno()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_SetFromErrno
PyErr_SetObject()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_SetObject
Py_INCREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_INCREF
PyErr_Occurred()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_Occurred
PyErr_Occurred()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_Occurred
PyErr_Clear()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_Clear
PyErr_Clear()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_Clear
PyErr_NoMemory()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_NoMemory
PyLong_FromLong()https://python.github.io/python-docs-zh-tw/c-api/long.html#c.PyLong_FromLong
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
Py_XDECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_XDECREF
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
PyExc_ZeroDivisionErrorhttps://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyExc_ZeroDivisionError
PyExc_TypeErrorhttps://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyExc_TypeError
PyExc_OSErrorhttps://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyExc_OSError
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
PyExc_TypeErrorhttps://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyExc_TypeError
PyExc_ValueErrorhttps://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyExc_ValueError
PyErr_NewException()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_NewException
Py_mod_exechttps://python.github.io/python-docs-zh-tw/c-api/module.html#c.Py_mod_exec
Py_mod_exechttps://python.github.io/python-docs-zh-tw/c-api/module.html#c.Py_mod_exec
ImportErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#ImportError
內建的例外https://python.github.io/python-docs-zh-tw/library/exceptions.html#bltin-exceptions
PyErr_NewException()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_NewException
Exceptionhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#Exception
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
PyMODINIT_FUNChttps://python.github.io/python-docs-zh-tw/c-api/extension-modules.html#c.PyMODINIT_FUNC
PyErr_SetString()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_SetString
https://python.github.io/python-docs-zh-tw/extending/extending.html#back-to-the-example
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
PyLong_FromLong()https://python.github.io/python-docs-zh-tw/c-api/long.html#c.PyLong_FromLong
Py_RETURN_NONEhttps://python.github.io/python-docs-zh-tw/c-api/none.html#c.Py_RETURN_NONE
Py_Nonehttps://python.github.io/python-docs-zh-tw/c-api/none.html#c.Py_None
https://python.github.io/python-docs-zh-tw/extending/extending.html#the-module-s-method-table-and-initialization-function
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
METH_KEYWORDShttps://python.github.io/python-docs-zh-tw/c-api/structures.html#c.METH_KEYWORDS
PyArg_ParseTupleAndKeywords()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTupleAndKeywords
PyMODINIT_FUNChttps://python.github.io/python-docs-zh-tw/c-api/extension-modules.html#c.PyMODINIT_FUNC
PyModuleDef_Init()https://python.github.io/python-docs-zh-tw/c-api/extension-modules.html#c.PyModuleDef_Init
PyImport_AppendInittab()https://python.github.io/python-docs-zh-tw/c-api/import.html#c.PyImport_AppendInittab
isolatedhttps://python.github.io/python-docs-zh-tw/howto/isolating-extensions.html#isolating-extensions-howto
Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTEDhttps://python.github.io/python-docs-zh-tw/c-api/module.html#c.Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED
https://python.github.io/python-docs-zh-tw/extending/extending.html#compilation-and-linkage
建立 C 與 C++ 擴充套件https://python.github.io/python-docs-zh-tw/extending/building.html#building
建置 Windows 上的 C 和 C++ 擴充https://python.github.io/python-docs-zh-tw/extending/windows.html#building-on-windows
https://python.github.io/python-docs-zh-tw/extending/extending.html#calling-python-functions-from-c
-chttps://python.github.io/python-docs-zh-tw/using/cmdline.html#cmdoption-c
Py_INCREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_INCREF
METH_VARARGShttps://python.github.io/python-docs-zh-tw/c-api/structures.html#c.METH_VARARGS
模組的方法表和初始化函式https://python.github.io/python-docs-zh-tw/extending/extending.html#methodtable
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
Extracting Parameters in Extension Functionshttps://python.github.io/python-docs-zh-tw/extending/extending.html#parsetuple
Py_XINCREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_XINCREF
Py_XDECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_XDECREF
參照計數https://python.github.io/python-docs-zh-tw/extending/extending.html#refcounts
PyObject_CallObject()https://python.github.io/python-docs-zh-tw/c-api/call.html#c.PyObject_CallObject
Py_BuildValue()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.Py_BuildValue
PyObject_CallObject()https://python.github.io/python-docs-zh-tw/c-api/call.html#c.PyObject_CallObject
PyObject_CallObject()https://python.github.io/python-docs-zh-tw/c-api/call.html#c.PyObject_CallObject
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
PyObject_CallObject()https://python.github.io/python-docs-zh-tw/c-api/call.html#c.PyObject_CallObject
PyObject_CallObject()https://python.github.io/python-docs-zh-tw/c-api/call.html#c.PyObject_CallObject
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
PyObject_CallObject()https://python.github.io/python-docs-zh-tw/c-api/call.html#c.PyObject_CallObject
PyErr_Clear()https://python.github.io/python-docs-zh-tw/c-api/exceptions.html#c.PyErr_Clear
PyObject_CallObject()https://python.github.io/python-docs-zh-tw/c-api/call.html#c.PyObject_CallObject
Py_BuildValue()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.Py_BuildValue
Py_BuildValue()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.Py_BuildValue
PyObject_Call()https://python.github.io/python-docs-zh-tw/c-api/call.html#c.PyObject_Call
Py_BuildValue()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.Py_BuildValue
https://python.github.io/python-docs-zh-tw/extending/extending.html#extracting-parameters-in-extension-functions
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
剖析引數與建置數值https://python.github.io/python-docs-zh-tw/c-api/arg.html#arg-parsing
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
https://python.github.io/python-docs-zh-tw/extending/extending.html#keyword-parameters-for-extension-functions
PyArg_ParseTupleAndKeywords()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTupleAndKeywords
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
PyArg_ParseTupleAndKeywords()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTupleAndKeywords
TypeErrorhttps://python.github.io/python-docs-zh-tw/library/exceptions.html#TypeError
https://python.github.io/python-docs-zh-tw/extending/extending.html#building-arbitrary-values
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
PyArg_ParseTuple()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.PyArg_ParseTuple
Py_BuildValue()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.Py_BuildValue
https://python.github.io/python-docs-zh-tw/extending/extending.html#reference-counts
gchttps://python.github.io/python-docs-zh-tw/library/gc.html#module-gc
collect()https://python.github.io/python-docs-zh-tw/library/gc.html#gc.collect
https://python.github.io/python-docs-zh-tw/extending/extending.html#reference-counting-in-python
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
[2]https://python.github.io/python-docs-zh-tw/extending/extending.html#id6
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
[3]https://python.github.io/python-docs-zh-tw/extending/extending.html#id7
Py_INCREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_INCREF
https://python.github.io/python-docs-zh-tw/extending/extending.html#ownership-rules
PyLong_FromLong()https://python.github.io/python-docs-zh-tw/c-api/long.html#c.PyLong_FromLong
Py_BuildValue()https://python.github.io/python-docs-zh-tw/c-api/arg.html#c.Py_BuildValue
PyLong_FromLong()https://python.github.io/python-docs-zh-tw/c-api/long.html#c.PyLong_FromLong
PyObject_GetAttrString()https://python.github.io/python-docs-zh-tw/c-api/object.html#c.PyObject_GetAttrString
PyTuple_GetItem()https://python.github.io/python-docs-zh-tw/c-api/tuple.html#c.PyTuple_GetItem
PyList_GetItem()https://python.github.io/python-docs-zh-tw/c-api/list.html#c.PyList_GetItem
PyDict_GetItem()https://python.github.io/python-docs-zh-tw/c-api/dict.html#c.PyDict_GetItem
PyDict_GetItemString()https://python.github.io/python-docs-zh-tw/c-api/dict.html#c.PyDict_GetItemString
PyImport_AddModule()https://python.github.io/python-docs-zh-tw/c-api/import.html#c.PyImport_AddModule
Py_INCREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_INCREF
PyTuple_SetItem()https://python.github.io/python-docs-zh-tw/c-api/tuple.html#c.PyTuple_SetItem
PyList_SetItem()https://python.github.io/python-docs-zh-tw/c-api/list.html#c.PyList_SetItem
PyDict_SetItem()https://python.github.io/python-docs-zh-tw/c-api/dict.html#c.PyDict_SetItem
Py_INCREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_INCREF
https://python.github.io/python-docs-zh-tw/extending/extending.html#thin-ice
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
PyList_SetItem()https://python.github.io/python-docs-zh-tw/c-api/list.html#c.PyList_SetItem
PyList_SetItem()https://python.github.io/python-docs-zh-tw/c-api/list.html#c.PyList_SetItem
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
tp_deallochttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_dealloc
tp_deallochttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_dealloc
tp_finalizehttps://python.github.io/python-docs-zh-tw/c-api/typeobj.html#c.PyTypeObject.tp_finalize
PEP 442https://peps.python.org/pep-0442/
PyList_SetItem()https://python.github.io/python-docs-zh-tw/c-api/list.html#c.PyList_SetItem
global lockhttps://python.github.io/python-docs-zh-tw/glossary.html#term-global-interpreter-lock
Py_BEGIN_ALLOW_THREADShttps://python.github.io/python-docs-zh-tw/c-api/init.html#c.Py_BEGIN_ALLOW_THREADS
Py_END_ALLOW_THREADShttps://python.github.io/python-docs-zh-tw/c-api/init.html#c.Py_END_ALLOW_THREADS
https://python.github.io/python-docs-zh-tw/extending/extending.html#null-pointers
Py_INCREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_INCREF
Py_DECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_DECREF
Py_XINCREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_XINCREF
Py_XDECREF()https://python.github.io/python-docs-zh-tw/c-api/refcounting.html#c.Py_XDECREF
[4]https://python.github.io/python-docs-zh-tw/extending/extending.html#id8
https://python.github.io/python-docs-zh-tw/extending/extending.html#writing-extensions-in-c
https://python.github.io/python-docs-zh-tw/extending/extending.html#providing-a-c-api-for-an-extension-module
模組的方法表和初始化函式https://python.github.io/python-docs-zh-tw/extending/extending.html#methodtable
PyCapsule_New()https://python.github.io/python-docs-zh-tw/c-api/capsule.html#c.PyCapsule_New
PyCapsule_Import()https://python.github.io/python-docs-zh-tw/c-api/capsule.html#c.PyCapsule_Import
一個簡單範例https://python.github.io/python-docs-zh-tw/extending/extending.html#extending-simpleexample
mod_exechttps://python.github.io/python-docs-zh-tw/c-api/module.html#c.Py_mod_exec
mod_exechttps://python.github.io/python-docs-zh-tw/c-api/module.html#c.Py_mod_exec
Capsuleshttps://python.github.io/python-docs-zh-tw/c-api/capsule.html#capsules
1https://python.github.io/python-docs-zh-tw/extending/extending.html#id1
oshttps://python.github.io/python-docs-zh-tw/library/os.html#module-os
2https://python.github.io/python-docs-zh-tw/extending/extending.html#id2
3https://python.github.io/python-docs-zh-tw/extending/extending.html#id3
4https://python.github.io/python-docs-zh-tw/extending/extending.html#id4
目錄https://python.github.io/python-docs-zh-tw/contents.html
1. 以 C 或 C++ 擴充 Pythonhttps://python.github.io/python-docs-zh-tw/extending/extending.html
1.1. 一個簡單範例https://python.github.io/python-docs-zh-tw/extending/extending.html#a-simple-example
1.2. 插曲:錯誤與例外https://python.github.io/python-docs-zh-tw/extending/extending.html#intermezzo-errors-and-exceptions
1.3. 回到範例https://python.github.io/python-docs-zh-tw/extending/extending.html#back-to-the-example
1.4. 模組的方法表和初始化函式https://python.github.io/python-docs-zh-tw/extending/extending.html#the-module-s-method-table-and-initialization-function
1.5. Compilation and Linkagehttps://python.github.io/python-docs-zh-tw/extending/extending.html#compilation-and-linkage
1.6. Calling Python Functions from Chttps://python.github.io/python-docs-zh-tw/extending/extending.html#calling-python-functions-from-c
1.7. Extracting Parameters in Extension Functionshttps://python.github.io/python-docs-zh-tw/extending/extending.html#extracting-parameters-in-extension-functions
1.8. Keyword Parameters for Extension Functionshttps://python.github.io/python-docs-zh-tw/extending/extending.html#keyword-parameters-for-extension-functions
1.9. Building Arbitrary Valueshttps://python.github.io/python-docs-zh-tw/extending/extending.html#building-arbitrary-values
1.10. 參照計數https://python.github.io/python-docs-zh-tw/extending/extending.html#reference-counts
1.10.1. Python 中的參照計數https://python.github.io/python-docs-zh-tw/extending/extending.html#reference-counting-in-python
1.10.2. Ownership Ruleshttps://python.github.io/python-docs-zh-tw/extending/extending.html#ownership-rules
1.10.3. Thin Icehttps://python.github.io/python-docs-zh-tw/extending/extending.html#thin-ice
1.10.4. NULL 指標https://python.github.io/python-docs-zh-tw/extending/extending.html#null-pointers
1.11. Writing Extensions in C++https://python.github.io/python-docs-zh-tw/extending/extending.html#writing-extensions-in-c
1.12. Providing a C API for an Extension Modulehttps://python.github.io/python-docs-zh-tw/extending/extending.html#providing-a-c-api-for-an-extension-module
擴充和嵌入 Python 直譯器https://python.github.io/python-docs-zh-tw/extending/index.html
2. 擴充型別定義教學https://python.github.io/python-docs-zh-tw/extending/newtypes_tutorial.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/extending/extending.rst?plain=1
索引https://python.github.io/python-docs-zh-tw/genindex.html
模組https://python.github.io/python-docs-zh-tw/py-modindex.html
下一頁https://python.github.io/python-docs-zh-tw/extending/newtypes_tutorial.html
上一頁https://python.github.io/python-docs-zh-tw/extending/index.html
Pythonhttps://www.python.org/
3.14.0 Documentationhttps://python.github.io/python-docs-zh-tw/index.html
擴充和嵌入 Python 直譯器https://python.github.io/python-docs-zh-tw/extending/index.html
1. 以 C 或 C++ 擴充 Pythonhttps://python.github.io/python-docs-zh-tw/extending/extending.html
版權所有https://python.github.io/python-docs-zh-tw/copyright.html
歷史與授權條款https://python.github.io/license.html
敬請捐贈。https://www.python.org/psf/donations/
發現 bughttps://python.github.io/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.