Changeset 391 for python/trunk/Doc/extending/index.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/extending/index.rst
r2 r391 5 5 ################################################## 6 6 7 :Release: |version|8 :Date: |today|9 10 7 This document describes how to write modules in C or C++ to extend the Python 11 interpreter with new modules. Those modules can define new functions but also12 new object types and their methods. The document also describes how to embed 13 t he Python interpreter in another application, for use as an extension language.14 Finally, it shows how to compile and link extension modules so that they can be 15 loaded dynamically (at run time) into the interpreter, if the underlying 16 operating system supports this feature.8 interpreter with new modules. Those modules can not only define new functions 9 but also new object types and their methods. The document also describes how 10 to embed the Python interpreter in another application, for use as an extension 11 language. Finally, it shows how to compile and link extension modules so that 12 they can be loaded dynamically (at run time) into the interpreter, if the 13 underlying operating system supports this feature. 17 14 18 15 This document assumes basic knowledge about Python. For an informal
Note:
See TracChangeset
for help on using the changeset viewer.