changeset 36782 | 86ba6e3eba4e |
parent 36781 | ffa3026d4196 |
child 36783 | 1fbbb8e83392 |
--- 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