Steven D'Aprano <[email protected]> added the comment:
I've replicated this under Linux as well.
def test():
start = time.time()
end = datetime.datetime.now()
start = datetime.datetime.fromtimestamp(start, None)
assert end >= start
Then run it in a loop:
>>> for i in range(10000000):
... test()
...
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
File "<stdin>", line 5, in test
AssertionError
>>> i
22
So while it is not as frequent as on Windows, it does occur on Linux as well.
----------
_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue44831>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com