[pypy-commit] pypy default: merge heads

arigo noreply at buildbot.pypy.org
Thu May 12 15:59:06 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r44105:c35cd5dfa0ac
Date: 2011-05-12 16:07 +0200
http://bitbucket.org/pypy/pypy/changeset/c35cd5dfa0ac/

Log:	merge heads

diff --git a/pypy/module/_multibytecodec/app_multibytecodec.py b/pypy/module/_multibytecodec/app_multibytecodec.py
--- a/pypy/module/_multibytecodec/app_multibytecodec.py
+++ b/pypy/module/_multibytecodec/app_multibytecodec.py
@@ -11,24 +11,24 @@
 
 class MultibyteIncrementalEncoder(object):
     def __init__(self, *args, **kwds):
-        raise NotImplementedError(
-            "MultibyteIncrementalEncoder not supported; "
+        raise LookupError(
+            "MultibyteIncrementalEncoder not implemented; "
             "see pypy/module/_multibytecodec/app_multibytecodec.py")
 
 class MultibyteIncrementalDecoder(object):
     def __init__(self, *args, **kwds):
-        raise NotImplementedError(
-            "MultibyteIncrementalDecoder not supported; "
+        raise LookupError(
+            "MultibyteIncrementalDecoder not implemented; "
             "see pypy/module/_multibytecodec/app_multibytecodec.py")
 
 class MultibyteStreamReader(object):
     def __init__(self, *args, **kwds):
-        raise NotImplementedError(
-            "MultibyteStreamReader not supported; "
+        raise LookupError(
+            "MultibyteStreamReader not implemented; "
             "see pypy/module/_multibytecodec/app_multibytecodec.py")
 
 class MultibyteStreamWriter(object):
     def __init__(self, *args, **kwds):
-        raise NotImplementedError(
-            "MultibyteStreamWriter not supported; "
+        raise LookupError(
+            "MultibyteStreamWriter not implemented; "
             "see pypy/module/_multibytecodec/app_multibytecodec.py")


More information about the pypy-commit mailing list