[Python-checkins] r79185 - python/trunk/Doc/extending/newtypes.rst

georg.brandl python-checkins at python.org
Sun Mar 21 11:02:47 CET 2010


Author: georg.brandl
Date: Sun Mar 21 11:02:47 2010
New Revision: 79185

Log:
Include structmember.h correctly.

Modified:
   python/trunk/Doc/extending/newtypes.rst

Modified: python/trunk/Doc/extending/newtypes.rst
==============================================================================
--- python/trunk/Doc/extending/newtypes.rst	(original)
+++ python/trunk/Doc/extending/newtypes.rst	Sun Mar 21 11:02:47 2010
@@ -252,7 +252,7 @@
 
 We've added an extra include::
 
-   #include "structmember.h"
+   #include <structmember.h>
 
 This include provides declarations that we use to handle attributes, as
 described a bit later.


More information about the Python-checkins mailing list