Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r87207:00e7a9a3460c
Date: 2016-09-18 19:54 +0200
http://bitbucket.org/pypy/pypy/changeset/00e7a9a3460c/

Log:    translation fix

diff --git a/pypy/objspace/std/objspace.py b/pypy/objspace/std/objspace.py
--- a/pypy/objspace/std/objspace.py
+++ b/pypy/objspace/std/objspace.py
@@ -270,6 +270,7 @@
             return W_SmallLongObject.fromint(val)
         return W_LongObject.fromint(self, val)
 
+    @specialize.argtype(1)
     def newlong_from_rarith_int(self, val): # val is an rarithmetic type 
         return W_LongObject.fromrarith_int(val)
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to