[Python-checkins] CVS: python/dist/src/Misc NEWS,1.191,1.192

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


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

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


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.191
retrieving revision 1.192
diff -C2 -r1.191 -r1.192
*** NEWS	2001/07/17 18:48:00	1.191
--- NEWS	2001/07/18 16:17:16	1.192
***************
*** 150,153 ****
--- 150,156 ----
  Library
  
+ - The flags used in dlopen calls can now be configured using
+   sys.setdlopenflags and queried using sys.getdlopenflags.
+ 
  - Fredrik Lundh's xmlrpclib is now a standard library module.  This
    provides full client-side XML-RPC support.  In addition,