René's URL Explorer Experiment


Title: 擴充和嵌入 Python 直譯器 — Python 3.14.0 說明文件

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
擴充和嵌入 Python 直譯器https://python.github.io/python-docs-zh-tw/extending/index.html
推薦的第三方工具https://python.github.io/python-docs-zh-tw/extending/index.html#recommended-third-party-tools
不使用第三方工具建立擴充https://python.github.io/python-docs-zh-tw/extending/index.html#creating-extensions-without-third-party-tools
在更大的應用程式中嵌入 CPython 運行環境 (runtime)https://python.github.io/python-docs-zh-tw/extending/index.html#embedding-the-cpython-runtime-in-a-larger-application
安全性注意事項https://python.github.io/python-docs-zh-tw/library/security_warnings.html
1. 以 C 或 C++ 擴充 Pythonhttps://python.github.io/python-docs-zh-tw/extending/extending.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/extending/index.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/extending.html
上一頁https://python.github.io/python-docs-zh-tw/library/security_warnings.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
https://python.github.io/python-docs-zh-tw/extending/index.html#extending-and-embedding-the-python-interpreter
Python 教學https://python.github.io/python-docs-zh-tw/tutorial/index.html#tutorial-index
Python 語言參考手冊https://python.github.io/python-docs-zh-tw/reference/index.html#reference-index
Python 標準函式庫 (Standard Library)https://python.github.io/python-docs-zh-tw/library/index.html#library-index
Python/C API 參考手冊https://python.github.io/python-docs-zh-tw/c-api/index.html#c-api-index
https://python.github.io/python-docs-zh-tw/extending/index.html#recommended-third-party-tools
第三方工具https://python.github.io/python-docs-zh-tw/c-api/intro.html#c-api-tools
https://python.github.io/python-docs-zh-tw/extending/index.html#creating-extensions-without-third-party-tools
PEP 489https://peps.python.org/pep-0489/
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.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
2. 擴充型別定義教學https://python.github.io/python-docs-zh-tw/extending/newtypes_tutorial.html
2.1. The Basicshttps://python.github.io/python-docs-zh-tw/extending/newtypes_tutorial.html#the-basics
2.2. Adding data and methods to the Basic examplehttps://python.github.io/python-docs-zh-tw/extending/newtypes_tutorial.html#adding-data-and-methods-to-the-basic-example
2.3. Providing finer control over data attributeshttps://python.github.io/python-docs-zh-tw/extending/newtypes_tutorial.html#providing-finer-control-over-data-attributes
2.4. Supporting cyclic garbage collectionhttps://python.github.io/python-docs-zh-tw/extending/newtypes_tutorial.html#supporting-cyclic-garbage-collection
2.5. Subclassing other typeshttps://python.github.io/python-docs-zh-tw/extending/newtypes_tutorial.html#subclassing-other-types
3. Defining Extension Types: Assorted Topicshttps://python.github.io/python-docs-zh-tw/extending/newtypes.html
3.1. Finalization and De-allocationhttps://python.github.io/python-docs-zh-tw/extending/newtypes.html#finalization-and-de-allocation
3.2. Object Presentationhttps://python.github.io/python-docs-zh-tw/extending/newtypes.html#object-presentation
3.3. Attribute Managementhttps://python.github.io/python-docs-zh-tw/extending/newtypes.html#attribute-management
3.4. Object Comparisonhttps://python.github.io/python-docs-zh-tw/extending/newtypes.html#object-comparison
3.5. Abstract Protocol Supporthttps://python.github.io/python-docs-zh-tw/extending/newtypes.html#abstract-protocol-support
3.6. Weak Reference Supporthttps://python.github.io/python-docs-zh-tw/extending/newtypes.html#weak-reference-support
3.7. More Suggestionshttps://python.github.io/python-docs-zh-tw/extending/newtypes.html#more-suggestions
4. 建立 C 與 C++ 擴充套件https://python.github.io/python-docs-zh-tw/extending/building.html
4.1. 用 setuptools 建置 C 與 C++ 擴充套件https://python.github.io/python-docs-zh-tw/extending/building.html#building-c-and-c-extensions-with-setuptools
5. 建置 Windows 上的 C 和 C++ 擴充https://python.github.io/python-docs-zh-tw/extending/windows.html
5.1. A Cookbook Approachhttps://python.github.io/python-docs-zh-tw/extending/windows.html#a-cookbook-approach
5.2. Differences Between Unix and Windowshttps://python.github.io/python-docs-zh-tw/extending/windows.html#differences-between-unix-and-windows
5.3. Using DLLs in Practicehttps://python.github.io/python-docs-zh-tw/extending/windows.html#using-dlls-in-practice
https://python.github.io/python-docs-zh-tw/extending/index.html#embedding-the-cpython-runtime-in-a-larger-application
1. 在其它 App 內嵌入 Pythonhttps://python.github.io/python-docs-zh-tw/extending/embedding.html
1.1. 非常高階的嵌入https://python.github.io/python-docs-zh-tw/extending/embedding.html#very-high-level-embedding
1.2. 超越非常高階嵌入:概觀https://python.github.io/python-docs-zh-tw/extending/embedding.html#beyond-very-high-level-embedding-an-overview
1.3. 純嵌入https://python.github.io/python-docs-zh-tw/extending/embedding.html#pure-embedding
1.4. 擴充嵌入式 Pythonhttps://python.github.io/python-docs-zh-tw/extending/embedding.html#extending-embedded-python
1.5. 在 C++ 中嵌入 Pythonhttps://python.github.io/python-docs-zh-tw/extending/embedding.html#embedding-python-in-c
1.6. 在類 Unix 系統下編譯和連結https://python.github.io/python-docs-zh-tw/extending/embedding.html#compiling-and-linking-under-unix-like-systems
目錄https://python.github.io/python-docs-zh-tw/contents.html
擴充和嵌入 Python 直譯器https://python.github.io/python-docs-zh-tw/extending/index.html
推薦的第三方工具https://python.github.io/python-docs-zh-tw/extending/index.html#recommended-third-party-tools
不使用第三方工具建立擴充https://python.github.io/python-docs-zh-tw/extending/index.html#creating-extensions-without-third-party-tools
在更大的應用程式中嵌入 CPython 運行環境 (runtime)https://python.github.io/python-docs-zh-tw/extending/index.html#embedding-the-cpython-runtime-in-a-larger-application
安全性注意事項https://python.github.io/python-docs-zh-tw/library/security_warnings.html
1. 以 C 或 C++ 擴充 Pythonhttps://python.github.io/python-docs-zh-tw/extending/extending.html
回報錯誤https://python.github.io/python-docs-zh-tw/bugs.html
顯示原始碼 https://github.com/python/cpython/blob/main/Doc/extending/index.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/extending.html
上一頁https://python.github.io/python-docs-zh-tw/library/security_warnings.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
版權所有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.