mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
os.access does not allow a fd
This commit is contained in:
parent
b1cb8b2872
commit
a9ab165cd2
1 changed files with 1 additions and 1 deletions
|
@ -2826,7 +2826,7 @@ class PathTConverterTests(unittest.TestCase):
|
|||
functions = [
|
||||
('stat', True, (), None),
|
||||
('lstat', False, (), None),
|
||||
('access', True, (os.F_OK,), None),
|
||||
('access', False, (os.F_OK,), None),
|
||||
('chflags', False, (0,), None),
|
||||
('lchflags', False, (0,), None),
|
||||
('open', False, (0,), getattr(os, 'close', None)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue