File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 55##################################################
66
77This document describes how to write modules in C or C++ to extend the Python
8- interpreter with new modules. Those modules can define new functions but also
9- new object types and their methods. The document also describes how to embed
10- the Python interpreter in another application, for use as an extension language.
11- Finally, it shows how to compile and link extension modules so that they can be
12- loaded dynamically (at run time) into the interpreter, if the underlying
13- 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.
1414
1515This document assumes basic knowledge about Python. For an informal
1616introduction to the language, see :ref: `tutorial-index `. :ref: `reference-index `
You can’t perform that action at this time.
0 commit comments