diff options
author | Georg Brandl <georg@python.org> | 2010-03-21 10:02:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-21 10:02:47 (GMT) |
commit | 236da4be4e0455440b427bde19d858a812546859 (patch) | |
tree | 38174f6c08f836d53b180b046ff8bb58af43034d /Doc/extending | |
parent | ce00cf2ce72bf4e5cef5eed3d56865f726d98e36 (diff) | |
download | cpython-236da4be4e0455440b427bde19d858a812546859.zip cpython-236da4be4e0455440b427bde19d858a812546859.tar.gz cpython-236da4be4e0455440b427bde19d858a812546859.tar.bz2 |
Include structmember.h correctly.
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/newtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/newtypes.rst b/Doc/extending/newtypes.rst index e3cf66a..ba79260 100644 --- a/Doc/extending/newtypes.rst +++ b/Doc/extending/newtypes.rst @@ -252,7 +252,7 @@ This version of the module has a number of changes. 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. |