From: Benjamin Peterson Date: Thu, 26 Mar 2009 21:11:16 +0000 (+0000) Subject: must pass argument to get expected behavior ;) X-Git-Tag: v2.7a1~1782 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9b5be0c05b8d9750e371f334e730b2cbef6cb01;p=thirdparty%2FPython%2Fcpython.git must pass argument to get expected behavior ;) --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index b75d146aee59..10284508830a 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)