Home
last modified time | relevance | path

Searched refs:sameopenfile (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/
Dgenericpath.py107 def sameopenfile(fp1, fp2): function
/third_party/python/Lib/test/
Dtest_ntpath.py710 self.assertTrue(ntpath.sameopenfile(tf1.fileno(), tf1.fileno()))
712 self.assertFalse(ntpath.sameopenfile(tf1.fileno(), tf2.fileno()))
718 ntpath.sameopenfile(-1, -1)
Dtest_genericpath.py306 self.assertTrue(self.pathmodule.sameopenfile(fd1, fd2))
Dtest_os.py2220 self.assertTrue(os.path.sameopenfile(f1.fileno(), f2.fileno()))
/third_party/python/Doc/library/
Dos.path.rst418 .. function:: sameopenfile(fp1, fp2)
436 underlying comparison used by :func:`samefile` and :func:`sameopenfile`.
/third_party/python/Misc/
DHISTORY4553 take advantage of the os.path.samefile/sameopenfile/samestat implementations
12023 - Issue #9790: Rework imports necessary for samefile and sameopenfile
12156 - Issue #7566: Implement os.path.sameopenfile for Windows.
17632 - Bug #1002398: The documentation for os.path.sameopenfile now correctly
29148 - Removed samefile(), sameopenfile(), samestat() from os.path (aka