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 sdaoden
Recipients r.david.murray, sdaoden, vstinner
Date 2011-05-06.10:27:06
SpamBayes Score 6.9740886e-06
Marked as misclassified No
Message-id <20110506102658.GB50163@sherwood.local>
In-reply-to <1304649839.94.0.358668470148.issue11999@psf.upfronthosting.co.za>
Content
> I also added an additional delta in case the file system clock
> is skewing relative to the system clock. 

In fact this idea could even be made public e.g. like this

    class ClockDrifter:
        def add_snapshot(self, exttime, loctime=None):
            if loctime is None:
                loctime = time.time()
            ...
        def drift_tendency(self):
            ...
        def drift_distance(self):
            ...

I could think of usages thereof.
History
Date User Action Args
2011-05-06 10:27:07sdaodensetrecipients: + sdaoden, vstinner, r.david.murray
2011-05-06 10:27:06sdaodenlinkissue11999 messages
2011-05-06 10:27:06sdaodencreate