summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-09-26 21:15:21 (GMT)
committerGeorg Brandl <georg@python.org>2008-09-26 21:15:21 (GMT)
commitda84d21a0c5fdd1da0fbc2d3638e3ee34731dd2c (patch)
treecc4c2b6ecf04cf4421d6986c0bfd1fb417502054 /Doc
parent0eee7c6ea32b7e6925eaa573586114e77ae9a408 (diff)
downloadcpython-da84d21a0c5fdd1da0fbc2d3638e3ee34731dd2c.zip
cpython-da84d21a0c5fdd1da0fbc2d3638e3ee34731dd2c.tar.gz
cpython-da84d21a0c5fdd1da0fbc2d3638e3ee34731dd2c.tar.bz2
typos.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/cporting.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/cporting.rst b/Doc/howto/cporting.rst
index a079213..630c97a 100644
--- a/Doc/howto/cporting.rst
+++ b/Doc/howto/cporting.rst
@@ -27,13 +27,13 @@ The easiest way to compile only some code for 3.0 is to check if
#endif
API functions that are not present can be aliased to their equivalents within
-conditional block.
+conditional blocks.
Changes to Object APIs
======================
-Python 3.0 merged together some types with simliar functions while cleanly
+Python 3.0 merged together some types with similar functions while cleanly
separating others.
@@ -121,7 +121,7 @@ Module initialization and state
Python 3.0 has a revamped extension module initialization system. (See PEP
:pep:`3121`.) Instead of storing module state in globals, they should be stored
-in a interpreter specific structure. Creating modules that act correctly in
+in an interpreter specific structure. Creating modules that act correctly in
both 2.x and 3.0 is tricky. The following simple example demonstrates how. ::
#include "Python.h"