Author: Philip Jenvey <pjen...@underboss.org>
Branch: py3k
Changeset: r74294:091b37528d7b
Date: 2014-10-29 18:19 -0700
http://bitbucket.org/pypy/pypy/changeset/091b37528d7b/

Log:    adapt to py3

diff --git a/pypy/objspace/std/objspace.py b/pypy/objspace/std/objspace.py
--- a/pypy/objspace/std/objspace.py
+++ b/pypy/objspace/std/objspace.py
@@ -14,7 +14,6 @@
 
 # Object imports
 from pypy.objspace.std.boolobject import W_BoolObject
-from pypy.objspace.std.bufferobject import W_Buffer
 from pypy.objspace.std.bytearrayobject import W_BytearrayObject
 from pypy.objspace.std.bytesobject import W_AbstractBytesObject, 
W_BytesObject, wrapstr
 from pypy.objspace.std.complexobject import W_ComplexObject
@@ -60,7 +59,6 @@
         # types
         builtin_type_classes = {
             W_BoolObject.typedef: W_BoolObject,
-            W_Buffer.typedef: W_Buffer,
             W_BytearrayObject.typedef: W_BytearrayObject,
             W_BytesObject.typedef: W_BytesObject,
             W_ComplexObject.typedef: W_ComplexObject,
@@ -69,7 +67,6 @@
             W_IntObject.typedef: W_IntObject,
             W_AbstractSeqIterObject.typedef: W_AbstractSeqIterObject,
             W_ListObject.typedef: W_ListObject,
-            W_LongObject.typedef: W_LongObject,
             W_MemoryView.typedef: W_MemoryView,
             W_NoneObject.typedef: W_NoneObject,
             W_ObjectObject.typedef: W_ObjectObject,
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to