diff --git a/src/future/types/newobject.py b/src/future/types/newobject.py index 35ec05ec..776d4766 100644 --- a/src/future/types/newobject.py +++ b/src/future/types/newobject.py @@ -37,24 +37,6 @@ def __iter__(self): """ -import sys - -from future.utils import with_metaclass - - -_builtin_object = object -ver = sys.version_info[:2] - - -# We no longer define a metaclass for newobject because this breaks multiple -# inheritance and custom metaclass use with this exception: - -# TypeError: Error when calling the metaclass bases -# metaclass conflict: the metaclass of a derived class must be a -# (non-strict) subclass of the metaclasses of all its bases - -# See issues #91 and #96. - class newobject(object): """