Skip to content

Commit 7d07833

Browse files
committed
Closes #17725: small grammar fix.
1 parent 6e94a30 commit 7d07833

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Doc/extending/index.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
##################################################
66

77
This 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

1515
This document assumes basic knowledge about Python. For an informal
1616
introduction to the language, see :ref:`tutorial-index`. :ref:`reference-index`

0 commit comments

Comments
 (0)