Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r63987:7607e77438bf
Date: 2013-05-11 18:15 +0200
http://bitbucket.org/pypy/pypy/changeset/7607e77438bf/

Log:    Relax the signature check - it's necessary for *args which we have
        in wrapper

diff --git a/rpython/rlib/entrypoint.py b/rpython/rlib/entrypoint.py
--- a/rpython/rlib/entrypoint.py
+++ b/rpython/rlib/entrypoint.py
@@ -6,7 +6,7 @@
 
 pypy_debug_catch_fatal_exception = 
rffi.llexternal('pypy_debug_catch_fatal_exception', [], lltype.Void)
 
-def entrypoint(key, argtypes, c_name=None, relax=False):
+def entrypoint(key, argtypes, c_name=None, relax=True):
     """ Note: entrypoint should call llop.gc_stack_bottom on it's own.
     That's necessary for making it work with asmgcc and hence JIT
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to