[pypy-svn] r50579 - in pypy/branch/applevel-ctypes2/pypy: config doc/config module/_rawffi

arigo at codespeak.net arigo at codespeak.net
Mon Jan 14 11:24:43 CET 2008


Author: arigo
Date: Mon Jan 14 11:24:43 2008
New Revision: 50579

Added:
   pypy/branch/applevel-ctypes2/pypy/doc/config/objspace.usemodules._rawffi.txt   (contents, props changed)
   pypy/branch/applevel-ctypes2/pypy/module/_rawffi/
      - copied from r50577, pypy/branch/applevel-ctypes2/pypy/module/_ffi/
Modified:
   pypy/branch/applevel-ctypes2/pypy/config/pypyoption.py
Log:
(fijal, arigo) Copy _ffi to _rawffi.  See doc/config.


Modified: pypy/branch/applevel-ctypes2/pypy/config/pypyoption.py
==============================================================================
--- pypy/branch/applevel-ctypes2/pypy/config/pypyoption.py	(original)
+++ pypy/branch/applevel-ctypes2/pypy/config/pypyoption.py	Mon Jan 14 11:24:43 2008
@@ -35,6 +35,7 @@
 
 
 module_dependencies = {'_ffi': [("objspace.usemodules.struct", True)],
+                       '_rawffi': [("objspace.usemodules.struct", True)],
                        }
 if os.name == "posix":
     module_dependencies['rctime'] = [("objspace.usemodules.select", True),]

Added: pypy/branch/applevel-ctypes2/pypy/doc/config/objspace.usemodules._rawffi.txt
==============================================================================
--- (empty file)
+++ pypy/branch/applevel-ctypes2/pypy/doc/config/objspace.usemodules._rawffi.txt	Mon Jan 14 11:24:43 2008
@@ -0,0 +1,3 @@
+An experimental module providing very low-level interface to
+C-level libraries, for use when implementing ctypes, not
+indended for a direct use at all.
\ No newline at end of file



More information about the Pypy-commit mailing list