diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 18:31:53 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 18:31:53 (GMT) |
commit | 276a58b8218ba2e6c13114ce3942d25328d0e8ee (patch) | |
tree | e2c2c1af548b31accfbcc69ba7db8a9c9c80e661 /Doc/library/os.rst | |
parent | 1945f93888f6acadd0bde6541f39d7616f9a5392 (diff) | |
parent | a6bac95a3c6eb926d3eded04e4b04a1d552053d1 (diff) | |
download | cpython-276a58b8218ba2e6c13114ce3942d25328d0e8ee.zip cpython-276a58b8218ba2e6c13114ce3942d25328d0e8ee.tar.gz cpython-276a58b8218ba2e6c13114ce3942d25328d0e8ee.tar.bz2 |
Merge from 3.2 . Replace the term members with correct and appropriate terminology. Initial patch by Adam Woodbeck.
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 4ba4f5d..77a28b4 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1826,11 +1826,12 @@ Files and Directories .. note:: - The exact meaning and resolution of the :attr:`st_atime`, :attr:`st_mtime`, and - :attr:`st_ctime` members depends on the operating system and the file system. - For example, on Windows systems using the FAT or FAT32 file systems, - :attr:`st_mtime` has 2-second resolution, and :attr:`st_atime` has only 1-day - resolution. See your operating system documentation for details. + The exact meaning and resolution of the :attr:`st_atime`, + :attr:`st_mtime`, and :attr:`st_ctime` attributes depend on the operating + system and the file system. For example, on Windows systems using the FAT + or FAT32 file systems, :attr:`st_mtime` has 2-second resolution, and + :attr:`st_atime` has only 1-day resolution. See your operating system + documentation for details. For backward compatibility, the return value of :func:`~os.stat` is also accessible as a tuple of at least 10 integers giving the most important (and portable) |