Author: Stephan <[email protected]>
Branch: 
Changeset: r171:01a4e0d4f852
Date: 2012-01-06 14:52 +0100
http://bitbucket.org/pypy/lang-js/changeset/01a4e0d4f852/

Log:    fixed arguments of floor

diff --git a/js/builtins_math.py b/js/builtins_math.py
--- a/js/builtins_math.py
+++ b/js/builtins_math.py
@@ -27,7 +27,7 @@
 
 # 15.8.2.15
 def round(this, *args):
-    return floor(this, args)
+    return floor(this, *args)
 
 # 15.8.2.13
 def pow(this, *args):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to