[Python-checkins] CVS: python/dist/src/Modules _hotshot.c,1.9,1.9.2.1

Jack Jansen jackjansen@users.sourceforge.net
Tue, 20 Nov 2001 15:22:35 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv8604/Python/Modules

Modified Files:
      Tag: r22b2-branch
	_hotshot.c 
Log Message:
Use #include "", not #include <>, to get at Python include files.

Index: _hotshot.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_hotshot.c,v
retrieving revision 1.9
retrieving revision 1.9.2.1
diff -C2 -d -r1.9 -r1.9.2.1
*** _hotshot.c	2001/11/09 15:59:36	1.9
--- _hotshot.c	2001/11/20 23:22:33	1.9.2.1
***************
*** 3,11 ****
   */
  
! #include <Python.h>
! #include <compile.h>
! #include <eval.h>
! #include <frameobject.h>
! #include <structmember.h>
  
  #ifdef HAVE_UNISTD_H
--- 3,11 ----
   */
  
! #include "Python.h"
! #include "compile.h"
! #include "eval.h"
! #include "frameobject.h"
! #include "structmember.h"
  
  #ifdef HAVE_UNISTD_H