From 77a8cd65bed54ac07b264cd8eb26bc0da4d60130 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Tue, 18 Aug 2015 14:20:00 -0400 Subject: [PATCH] Issue #23572: Fixed functools.singledispatch on classes with falsy metaclasses. Patch by Ethan Furman. --- Lib/functools.py | 2 +- Lib/test/test_functools.py | 18 ++++++++++++++++++ Misc/NEWS | 23 +++++++++++++++++++++++ 3 files changed, 42 insertions(+), 1 deletion(-) diff --git a/Lib/functools.py b/Lib/functools.py index 09df0680208..06a4ff13664 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -567,7 +567,7 @@ def _c3_merge(sequences): break # reject the current head, it appears later else: break - if not candidate: + if candidate is None: raise RuntimeError("Inconsistent hierarchy") result.append(candidate) # remove the chosen candidate diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py index ac211c46ad6..ae929eca99f 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 diff --git a/Misc/NEWS b/Misc/NEWS index 10948818a62..d523232ee69 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -2,6 +2,29 @@ Python News +++++++++++ + +What's New in Python 3.5.1 +========================== + + +Release date: TBA + + +Core and Builtins +----------------- + + +Library +------- + +- Issue #23572: Fixed functools.singledispatch on classes with falsy + metaclasses. Patch by Ethan Furman. + + +Documentation +------------- + + What's New in Python 3.5.0 release candidate 2? ===============================================