Author: Maciej Fijalkowski <[email protected]>
Branch: pypy-in-a-box
Changeset: r56175:c359afad9bf7
Date: 2012-07-18 17:32 +0200
http://bitbucket.org/pypy/pypy/changeset/c359afad9bf7/
Log: kill a pointless arg
diff --git a/pypy/objspace/std/embedding.py b/pypy/objspace/std/embedding.py
--- a/pypy/objspace/std/embedding.py
+++ b/pypy/objspace/std/embedding.py
@@ -31,8 +31,8 @@
return func
return wrapper
-@export_function([rffi.CArrayPtr(rffi.CCHARP), rffi.CCHARP], lltype.Void)
-def prepare_function(space, ll_names, ll_s):
+@export_function([rffi.CCHARP], lltype.Void)
+def prepare_function(space, ll_s):
s = rffi.charp2str(ll_s)
w_globals = space.fromcache(Cache).w_globals
ec = space.getexecutioncontext()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit