[pypy-svn] r50482 - pypy/dist/pypy/rpython/lltypesystem

fijal at codespeak.net fijal at codespeak.net
Thu Jan 10 10:14:39 CET 2008


Author: fijal
Date: Thu Jan 10 10:14:37 2008
New Revision: 50482

Modified:
   pypy/dist/pypy/rpython/lltypesystem/ll2ctypes.py
Log:
Fix after armin, who is checking in tabs


Modified: pypy/dist/pypy/rpython/lltypesystem/ll2ctypes.py
==============================================================================
--- pypy/dist/pypy/rpython/lltypesystem/ll2ctypes.py	(original)
+++ pypy/dist/pypy/rpython/lltypesystem/ll2ctypes.py	Thu Jan 10 10:14:37 2008
@@ -548,7 +548,7 @@
                 libpath = libname
             if libpath:
                 dllclass = getattr(ctypes, calling_conv + 'dll')
-		# urgh, cannot pass the flag to dllclass.LoadLibrary
+                # urgh, cannot pass the flag to dllclass.LoadLibrary
                 clib = dllclass._dlltype(libpath, ctypes.RTLD_GLOBAL)
                 cfunc = get_on_lib(clib, funcname)
                 if cfunc is not None:



More information about the Pypy-commit mailing list