Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r63580:0d482d947e35
Date: 2013-04-23 20:16 -0700
http://bitbucket.org/pypy/pypy/changeset/0d482d947e35/

Log:    unichr -> chr

diff --git a/pypy/module/__builtin__/operation.py 
b/pypy/module/__builtin__/operation.py
--- a/pypy/module/__builtin__/operation.py
+++ b/pypy/module/__builtin__/operation.py
@@ -29,7 +29,7 @@
         c = UNICHR(code)
     except ValueError:
         raise OperationError(space.w_ValueError,
-                             space.wrap("unichr() arg out of range"))
+                             space.wrap("chr() arg out of range"))
     return space.wrap(c)
 
 def len(space, w_obj):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to