[pypy-commit] pypy fix-tpname: these are __builtin__ on cpython

bdkearns noreply at buildbot.pypy.org
Fri May 2 08:34:37 CEST 2014


Author: Brian Kearns <bdkearns at gmail.com>
Branch: fix-tpname
Changeset: r71190:86022cc29880
Date: 2014-05-02 02:27 -0400
http://bitbucket.org/pypy/pypy/changeset/86022cc29880/

Log:	these are __builtin__ on cpython

diff --git a/pypy/module/_multibytecodec/interp_incremental.py b/pypy/module/_multibytecodec/interp_incremental.py
--- a/pypy/module/_multibytecodec/interp_incremental.py
+++ b/pypy/module/_multibytecodec/interp_incremental.py
@@ -75,7 +75,6 @@
 
 MultibyteIncrementalDecoder.typedef = TypeDef(
     'MultibyteIncrementalDecoder',
-    __module__ = '_multibytecodec',
     __new__ = interp2app(mbidecoder_new),
     decode  = interp2app(MultibyteIncrementalDecoder.decode_w),
     reset   = interp2app(MultibyteIncrementalDecoder.reset_w),
@@ -124,7 +123,6 @@
 
 MultibyteIncrementalEncoder.typedef = TypeDef(
     'MultibyteIncrementalEncoder',
-    __module__ = '_multibytecodec',
     __new__ = interp2app(mbiencoder_new),
     encode  = interp2app(MultibyteIncrementalEncoder.encode_w),
     reset   = interp2app(MultibyteIncrementalEncoder.reset_w),
diff --git a/pypy/module/_multibytecodec/interp_multibytecodec.py b/pypy/module/_multibytecodec/interp_multibytecodec.py
--- a/pypy/module/_multibytecodec/interp_multibytecodec.py
+++ b/pypy/module/_multibytecodec/interp_multibytecodec.py
@@ -46,7 +46,6 @@
 
 MultibyteCodec.typedef = TypeDef(
     'MultibyteCodec',
-    __module__ = '_multibytecodec',
     decode = interp2app(MultibyteCodec.decode),
     encode = interp2app(MultibyteCodec.encode),
     )


More information about the pypy-commit mailing list