[pypy-commit] pypy stacklet: Fix.

arigo noreply at buildbot.pypy.org
Wed Aug 10 11:21:20 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: stacklet
Changeset: r46405:f1da58fd6934
Date: 2011-08-10 11:20 +0200
http://bitbucket.org/pypy/pypy/changeset/f1da58fd6934/

Log:	Fix.

diff --git a/pypy/rlib/_rffi_stacklet.py b/pypy/rlib/_rffi_stacklet.py
--- a/pypy/rlib/_rffi_stacklet.py
+++ b/pypy/rlib/_rffi_stacklet.py
@@ -13,9 +13,9 @@
     separate_module_sources = ['#include "src/stacklet/stacklet.c"\n'],
 )
 
-def llexternal(name, args, result):
+def llexternal(name, args, result, **kwds):
     return rffi.llexternal(name, args, result, compilation_info=eci,
-                           _nowrapper=True)
+                           _nowrapper=True, **kwds)
 
 # ----- types -----
 


More information about the pypy-commit mailing list