summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-07-18 16:17:16 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-07-18 16:17:16 (GMT)
commitf0473d511b7f883bfff3048f55e3a6adc7a43cb9 (patch)
tree8239a8d19fe2851555ff96b250cad6e24760717d /Misc
parent984158d25bd76fa33d4245e98f53c876f428d5f4 (diff)
downloadcpython-f0473d511b7f883bfff3048f55e3a6adc7a43cb9.zip
cpython-f0473d511b7f883bfff3048f55e3a6adc7a43cb9.tar.gz
cpython-f0473d511b7f883bfff3048f55e3a6adc7a43cb9.tar.bz2
Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags.
Add dlopenflags to PyInterpreterState, and use it in dlopen calls.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 88722be..55edded 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -149,6 +149,9 @@ Core
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,
Demo/xmlrpc/ contains two server frameworks (one SocketServer-based,