From a9b5be0c05b8d9750e371f334e730b2cbef6cb01 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 26 Mar 2009 21:11:16 +0000 Subject: [PATCH] must pass argument to get expected behavior ;) --- Lib/test/test_support.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index b75d146aee5..10284508830 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -705,7 +705,7 @@ def cpython_only(test): return impl_detail(cpython=True)(test) def impl_detail(msg=None, **guards): - if check_impl_detail(): + if check_impl_detail(guards): return _id if msg is None: guardnames, default = _parse_guards(guards)