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

fijal at codespeak.net fijal at codespeak.net
Thu Jan 17 16:36:26 CET 2008


Author: fijal
Date: Thu Jan 17 16:36:25 2008
New Revision: 50705

Modified:
   pypy/dist/pypy/lib/_ctypes/pointer.py
Log:
Kill tab


Modified: pypy/dist/pypy/lib/_ctypes/pointer.py
==============================================================================
--- pypy/dist/pypy/lib/_ctypes/pointer.py	(original)
+++ pypy/dist/pypy/lib/_ctypes/pointer.py	Thu Jan 17 16:36:25 2008
@@ -35,8 +35,8 @@
     def from_param(self, value):
         if value is None:
             return 0
-	# If we expect POINTER(<type>), but receive a <type> instance, accept
-	# it by calling byref(<type>).
+        # If we expect POINTER(<type>), but receive a <type> instance, accept
+        # it by calling byref(<type>).
         if isinstance(value, self._type_):
             return byref(value)
         # Array instances are also pointers when the item types are the same.



More information about the Pypy-commit mailing list