diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-18 14:20:00 -0400 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-18 14:20:00 -0400 |
commit | 77a8cd65bed54ac07b264cd8eb26bc0da4d60130 (patch) | |
tree | 4505972d1ec398336ab59f2c6bf9512a0d7ebde7 /Lib/test/test_functools.py | |
parent | f5e0c41d6d143b16af4b9d97d5ce39eaa9e32df3 (diff) | |
download | cpython-git-77a8cd65bed54ac07b264cd8eb26bc0da4d60130.tar.gz |
Issue #23572: Fixed functools.singledispatch on classes with falsy metaclasses.
Patch by Ethan Furman.
Diffstat (limited to 'Lib/test/test_functools.py')
-rw-r--r-- | Lib/test/test_functools.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py index ac211c46ad..ae929eca99 100644 --- a/Lib/test/test_functools.py +++ b/Lib/test/test_functools.py @@ -1491,6 +1491,24 @@ class TestSingleDispatch(unittest.TestCase): many_abcs = [c.Mapping, c.Sized, c.Callable, c.Container, c.Iterable] self.assertEqual(mro(X, abcs=many_abcs), expected) + def test_false_meta(self): + # see issue23572 + class MetaA(type): + def __len__(self): + return 0 + class A(metaclass=MetaA): + pass + class AA(A): + pass + @functools.singledispatch + def fun(a): + return 'base A' + @fun.register(A) + def _(a): + return 'fun A' + aa = AA() + self.assertEqual(fun(aa), 'fun A') + def test_mro_conflicts(self): c = collections @functools.singledispatch |