diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-26 21:30:54 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-26 21:30:54 (GMT) |
commit | effa1dc70909011e4231a475c77dc5226d9b60ac (patch) | |
tree | 40d67b7db1034abaeb4791d14dd4e21f013e9a59 | |
parent | bf4464a38ffd672a4b39322058aa2eda41f26a60 (diff) | |
download | cpython-effa1dc70909011e4231a475c77dc5226d9b60ac.zip cpython-effa1dc70909011e4231a475c77dc5226d9b60ac.tar.gz cpython-effa1dc70909011e4231a475c77dc5226d9b60ac.tar.bz2 |
** is required here
-rw-r--r-- | Lib/test/test_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 1028450..4ad2401 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(guards): + if check_impl_detail(**guards): return _id if msg is None: guardnames, default = _parse_guards(guards) |