summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-12-12 20:17:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-12-12 20:17:29 (GMT)
commitf10f162db95852ab0624f378f15735af3f38b6c9 (patch)
tree394bac0b7f276f13dea9963ff0ed0ed82947e48b
parente72b586b02f0e01764fab0f9a26c5f7cf683f3cd (diff)
downloadcpython-f10f162db95852ab0624f378f15735af3f38b6c9.zip
cpython-f10f162db95852ab0624f378f15735af3f38b6c9.tar.gz
cpython-f10f162db95852ab0624f378f15735af3f38b6c9.tar.bz2
Consistent ordering of availability statements
-rw-r--r--Doc/library/os.path.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst
index 6dc82b6..522b94c 100644
--- a/Doc/library/os.path.rst
+++ b/Doc/library/os.path.rst
@@ -228,7 +228,7 @@ applications should use string objects to access all files.
*start* defaults to :attr:`os.curdir`.
- Availability: Windows, Unix.
+ Availability: Unix, Windows.
.. function:: samefile(path1, path2)
@@ -241,7 +241,7 @@ applications should use string objects to access all files.
name using the Windows API call GetFinalPathNameByHandle. This function
raises an exception if handles cannot be obtained to either file.
- Availability: Windows, Unix.
+ Availability: Unix, Windows.
.. versionchanged:: 3.2
Added Windows support.