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

(Merge 3.3) Fix @requires_freebsd_version and @requires_linux_version

decorators of test.support, run the test if the platform matchs!
......@@ -431,6 +431,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