[pypy-svn] r57796 - pypy/dist/pypy/lib/_ctypes

fijal at codespeak.net fijal at codespeak.net
Wed Sep 3 16:38:27 CEST 2008


Author: fijal
Date: Wed Sep  3 16:38:25 2008
New Revision: 57796

Modified:
   pypy/dist/pypy/lib/_ctypes/dll.py
Log:
update the comment


Modified: pypy/dist/pypy/lib/_ctypes/dll.py
==============================================================================
--- pypy/dist/pypy/lib/_ctypes/dll.py	(original)
+++ pypy/dist/pypy/lib/_ctypes/dll.py	Wed Sep  3 16:38:25 2008
@@ -3,5 +3,5 @@
 def dlopen(name, mode):
     # XXX mode is ignored
     if name is None:
-        return None # XXX seems to mean the cpython lib
+        return None # XXX this should return *all* loaded libs, dlopen(NULL)
     return _rawffi.CDLL(name)



More information about the Pypy-commit mailing list