From: Victor Stinner Date: Wed, 31 Oct 2012 00:04:10 +0000 (+0100) Subject: Issue #15478: Fix test_os on Windows (os.chown is missing) X-Git-Tag: v3.4.0a1~2135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f69055efba0019ecdccfbd6497361f4d7755c0d6;p=thirdparty%2FPython%2Fcpython.git Issue #15478: Fix test_os on Windows (os.chown is missing) --- diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index e5864ed83b9b..0d1f60a4f361 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -2069,7 +2069,6 @@ class OSErrorTests(unittest.TestCase): funcs = [ (os.chdir,), (os.chmod, 0o777), - (os.chown, 0, 0), (os.lchown, 0, 0), (os.listdir,), (os.lstat,), @@ -2081,6 +2080,8 @@ class OSErrorTests(unittest.TestCase): (os.truncate, 0), (os.unlink,), ] + if hasattr(os, "chown"): + funcs.append((os.chown, 0, 0)) if sys.platform == "win32": funcs.extend(( (os._getfullpathname,),