[pypy-commit] pypy pypy-in-a-box: kill a pointless arg

fijal noreply at buildbot.pypy.org
Wed Jul 18 17:32:22 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
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
 
- at export_function([rffi.CArrayPtr(rffi.CCHARP), rffi.CCHARP], lltype.Void)
-def prepare_function(space, ll_names, ll_s):
+ at 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()


More information about the pypy-commit mailing list