[Python-checkins] r66629 - python/trunk/Doc/howto/cporting.rst

georg.brandl python-checkins at python.org
Fri Sep 26 23:15:22 CEST 2008


Author: georg.brandl
Date: Fri Sep 26 23:15:21 2008
New Revision: 66629

Log:
typos.


Modified:
   python/trunk/Doc/howto/cporting.rst

Modified: python/trunk/Doc/howto/cporting.rst
==============================================================================
--- python/trunk/Doc/howto/cporting.rst	(original)
+++ python/trunk/Doc/howto/cporting.rst	Fri Sep 26 23:15:21 2008
@@ -27,13 +27,13 @@
    #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 @@
 
 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"


More information about the Python-checkins mailing list