Commit 9f050781 authored by Jeremy Hylton's avatar Jeremy Hylton

Remove bogus include.

#include <stdio.h> is implied by ExtensionClass.h, because it includes
Python.h.  Also, it is an error to include standard headers before
Python.h.

Bugfix candidate.
parent 14eb5f8b
...@@ -21,10 +21,9 @@ static char ExtensionClass_module_documentation[] = ...@@ -21,10 +21,9 @@ static char ExtensionClass_module_documentation[] =
" - They provide access to unbound methods,\n" " - They provide access to unbound methods,\n"
" - They can be called to create instances.\n" " - They can be called to create instances.\n"
"\n" "\n"
"$Id: ExtensionClass.c,v 1.57 2002/08/22 16:55:53 shane Exp $\n" "$Id: ExtensionClass.c,v 1.58 2002/11/12 20:04:20 jeremy Exp $\n"
; ;
#include <stdio.h>
#include "ExtensionClass.h" #include "ExtensionClass.h"
static void static void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment