This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author khenriksson
Recipients khenriksson
Date 2011-03-10.00:05:26
SpamBayes Score 2.997602e-14
Marked as misclassified No
Message-id <1299715528.65.0.317038011667.issue11457@psf.upfronthosting.co.za>
In-reply-to
Content
The most recent (issue 7) release of the POSIX standard mandates support for nanosecond precision in certain system calls. For example, the stat structure include a timespec struct for each of mtime, atime, and ctime that provides such nanosecond precision.[1] There is also an futimens call that allows setting the time accurate to the nanosecond.[2] Support for such precision is available at the least on 2.6 Linux kernels.

1. http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_stat.h.html
2. http://pubs.opengroup.org/onlinepubs/9699919799/functions/futimens.html

Currently, the Python float type is used everywhere to express times in a single value (such as the result from os.stat). However, since this is implemented in CPython using type double (and possibly similarly elsewhere) it is impossible to obtain sufficient precision using a float.

Therefore, it would be useful to expose the number of seconds and nanoseconds separately
to allow full precision. Perhaps adding these values as additional members to the return value from os.stat would be most useful, something like .st_atimensec that Linux sometimes uses, or else just follow the POSIX standard to include a sub-struct.

This is important for example with the tarfile module with the pax tar format. The POSIX tar standard[3] mandates storing the mtime in the extended header (if it is not an integer) with as much precision as is available in the underlying file system, and likewise to restore this time properly upon extraction. Currently this is not possible.

3. http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html
History
Date User Action Args
2011-03-10 00:05:28khenrikssonsetrecipients: + khenriksson
2011-03-10 00:05:28khenrikssonsetmessageid: <1299715528.65.0.317038011667.issue11457@psf.upfronthosting.co.za>
2011-03-10 00:05:27khenrikssonlinkissue11457 messages
2011-03-10 00:05:27khenrikssoncreate