[pypy-svn] rev 2509 - pypy/trunk/src/pypy/interpreter

jacob at codespeak.net jacob at codespeak.net
Thu Dec 18 16:04:49 CET 2003


Author: jacob
Date: Thu Dec 18 16:04:48 2003
New Revision: 2509

Modified:
   pypy/trunk/src/pypy/interpreter/baseobjspace.py
Log:
Added round() among multimethods.

Modified: pypy/trunk/src/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/trunk/src/pypy/interpreter/baseobjspace.py	Thu Dec 18 16:04:48 2003
@@ -233,6 +233,7 @@
     ('abs' ,            'abs',       1, ['__abs__']),
     ('hex',             'hex',       1, ['__hex__']),
     ('oct',             'oct',       1, ['__oct__']),
+    ('round',           'round',     2, []),
     ('ord',             'ord',       1, []),
     ('invert',          '~',         1, ['__invert__']),
     ('add',             '+',         2, ['__add__', '__radd__']),


More information about the Pypy-commit mailing list