# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1518980461 -19800 # Node ID 3496bffe266d735565e7800a1e0b08048fcc3f75 # Parent a8bca9d0cea073cced6a5bfa03b0ae9a9af2feba py3: make sure we are doing integer division by using '//' Differential Revision: https://phab.mercurial-scm.org/D2337 diff -r a8bca9d0cea0 -r 3496bffe266d mercurial/crecord.py --- a/mercurial/crecord.py Mon Feb 19 00:15:50 2018 +0530 +++ b/mercurial/crecord.py Mon Feb 19 00:31:01 2018 +0530 @@ -1335,7 +1335,7 @@ # temporarily disable printing to windows by printstring patchdisplaystring = self.printitem(item, ignorefolding, recursechildren, towin=False) - numlines = len(patchdisplaystring) / self.xscreensize + numlines = len(patchdisplaystring) // self.xscreensize return numlines def sigwinchhandler(self, n, frame):