[pypy-svn] pypy default: Fix import.

arigo commits-noreply at bitbucket.org
Sun Mar 13 15:04:01 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r42558:55dee680172c
Date: 2011-03-13 13:30 +0100
http://bitbucket.org/pypy/pypy/changeset/55dee680172c/

Log:	Fix import.

diff --git a/pypy/module/cpyext/typeobject.py b/pypy/module/cpyext/typeobject.py
--- a/pypy/module/cpyext/typeobject.py
+++ b/pypy/module/cpyext/typeobject.py
@@ -4,7 +4,7 @@
 from pypy.rpython.lltypesystem import rffi, lltype
 from pypy.rpython.annlowlevel import llhelper
 from pypy.interpreter.baseobjspace import DescrMismatch
-from pypy.objspace.std.typeobject import W_TypeObject, _CPYTYPE
+from pypy.objspace.std.typeobject import W_TypeObject
 from pypy.interpreter.typedef import GetSetProperty
 from pypy.module.cpyext.api import (
     cpython_api, cpython_struct, bootstrap_function, Py_ssize_t,


More information about the Pypy-commit mailing list