From 88958d1f4beae35315b26ec1b32b38eeb41946f8 Mon Sep 17 00:00:00 2001 From: Daniel Holth Date: Mon, 6 Jun 2016 20:05:23 -0400 Subject: just throw away __slots__ on pypy --- src/engine/SCons/compat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/SCons/compat/__init__.py b/src/engine/SCons/compat/__init__.py index 285c4ac..6f20b73 100644 --- a/src/engine/SCons/compat/__init__.py +++ b/src/engine/SCons/compat/__init__.py @@ -178,7 +178,7 @@ class NoSlotsPyPy(type): """ def __new__(meta, name, bases, dct): if PYPY and '__slots__' in dct: - dct['__slats__'] = dct.pop('__slots__') + dct.pop('__slots__') return super(NoSlotsPyPy, meta).__new__(meta, name, bases, dct) -- cgit v0.12