[pypy-commit] pypy py3k: remove this outdated comment

bdkearns noreply at buildbot.pypy.org
Sat Mar 9 04:15:30 CET 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: py3k
Changeset: r62262:a71debf85c96
Date: 2013-03-08 20:01 -0500
http://bitbucket.org/pypy/pypy/changeset/a71debf85c96/

Log:	remove this outdated comment

diff --git a/lib-python/3/datetime.py b/lib-python/3/datetime.py
--- a/lib-python/3/datetime.py
+++ b/lib-python/3/datetime.py
@@ -1418,11 +1418,6 @@
         ss = min(ss, 59)    # clamp out leap seconds if the platform has them
         return cls(y, m, d, hh, mm, ss, us)
 
-    # XXX This is supposed to do better than we *can* do by using time.time(),
-    # XXX if the platform supports a more accurate way.  The C implementation
-    # XXX uses gettimeofday on platforms that have it, but that isn't
-    # XXX available from Python.  So now() may return different results
-    # XXX across the implementations.
     @classmethod
     def now(cls, tz=None):
         "Construct a datetime from time.time() and optional time zone info."


More information about the pypy-commit mailing list