diff -r ffa3026d4196 -r 86ba6e3eba4e mercurial/util.py --- a/mercurial/util.py Mon Mar 05 12:30:20 2018 -0500 +++ b/mercurial/util.py Mon Mar 05 12:31:08 2018 -0500 @@ -176,11 +176,6 @@ _notset = object() -# disable Python's problematic floating point timestamps (issue4836) -# (Python hypocritically says you shouldn't change this behavior in -# libraries, and sure enough Mercurial is not a library.) -os.stat_float_times(False) - def safehasattr(thing, attr): return getattr(thing, attr, _notset) is not _notset