Author: Stephan <[email protected]> Branch: Changeset: r370:9e9af1fdf61d Date: 2013-03-20 16:23 +0100 http://bitbucket.org/pypy/lang-js/changeset/9e9af1fdf61d/
Log: removed some annotaitons diff --git a/js/jsobj.py b/js/jsobj.py --- a/js/jsobj.py +++ b/js/jsobj.py @@ -1186,7 +1186,6 @@ @enforceargs(int) [email protected] def int32(n): if n & (1 << (32 - 1)): res = n | ~MASK_32 @@ -1197,13 +1196,11 @@ @enforceargs(int) [email protected] def uint32(n): return n & MASK_32 @enforceargs(int) [email protected] def uint16(n): return n & MASK_16 _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
