[pypy-svn] r36582 - pypy/dist/pypy/rpython/module

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Jan 12 15:55:21 CET 2007


Author: cfbolz
Date: Fri Jan 12 15:55:12 2007
New Revision: 36582

Modified:
   pypy/dist/pypy/rpython/module/ll_os.py
Log:
give names that gencli understand. this repetition of the namespace should be
fixed.


Modified: pypy/dist/pypy/rpython/module/ll_os.py
==============================================================================
--- pypy/dist/pypy/rpython/module/ll_os.py	(original)
+++ pypy/dist/pypy/rpython/module/ll_os.py	Fri Jan 12 15:55:12 2007
@@ -37,7 +37,7 @@
 
     class ExecvFuncEntry(ExtFuncEntry):
         _about_ = os.execv
-        name = "ll_os_execv"
+        name = "ll_os.ll_os_execv"
         signature_args = [SomeString(), s_list_of_strings]
         signature_result = s_ImpossibleValue
 
@@ -62,7 +62,7 @@
 
 class DupFuncEntry(ExtFuncEntry):
     _about_ = os.dup
-    name = "ll_os_dup"
+    name = "ll_os.ll_os_dup"
     signature_args = [SomeInteger()]
     signature_result = SomeInteger()
 
@@ -78,7 +78,7 @@
 
 class Dup2FuncEntry(ExtFuncEntry):
     _about_ = os.dup2
-    name = "ll_os_dup2"
+    name = "ll_os.ll_os_dup2"
     signature_args = [SomeInteger(), SomeInteger()]
     signature_result = s_None
 



More information about the Pypy-commit mailing list