Kaydet (Commit) 3b44a409 authored tarafından Victor Stinner's avatar Victor Stinner

Fix @requires_freebsd_version and @requires_linux_version decorators of

test.support, run the test if the platform matchs!
üst b84fc0fd
......@@ -430,6 +430,8 @@ def _requires_unix_version(sysname, min_version):
raise unittest.SkipTest(
"%s version %s or higher required, not %s"
% (sysname, min_version_txt, version_txt))
return func(*args, **kw)
wrapper.min_version = min_version
return wrapper
return decorator
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment