[Python-checkins] CVS: python/dist/src/Include pystate.h,2.16,2.17

Martin v. L?wis loewis@users.sourceforge.net
Wed, 18 Jul 2001 09:17:18 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory usw-pr-cvs1:/tmp/cvs-serv17889/Include

Modified Files:
	pystate.h 
Log Message:
Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags.
Add dlopenflags to PyInterpreterState, and use it in dlopen calls.


Index: pystate.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pystate.h,v
retrieving revision 2.16
retrieving revision 2.17
diff -C2 -r2.16 -r2.17
*** pystate.h	2001/07/03 23:39:52	2.16
--- pystate.h	2001/07/18 16:17:16	2.17
***************
*** 24,27 ****
--- 24,30 ----
  
      int checkinterval;
+ #ifdef HAVE_DLOPEN
+     int dlopenflags;
+ #endif
  
  } PyInterpreterState;