cpython (3.4): Issue #25505: Remove unused buggy method.
https://hg.python.org/cpython/rev/ef435729bc80 changeset: 98902:ef435729bc80 branch: 3.4 parent: 98897:38b6b7253ba1 user: Terry Jan Reedy <tjreedy@udel.edu> date: Fri Oct 30 19:25:34 2015 -0400 summary: Issue #25505: Remove unused buggy method. files: Tools/scripts/fixdiv.py | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/Tools/scripts/fixdiv.py b/Tools/scripts/fixdiv.py --- a/Tools/scripts/fixdiv.py +++ b/Tools/scripts/fixdiv.py @@ -335,8 +335,6 @@ self.buffer.append(line) self.lineno += 1 return line - def truncate(self): - del self.buffer[-window:] def __getitem__(self, index): self.fill() bufstart = self.lineno - len(self.buffer) -- Repository URL: https://hg.python.org/cpython
participants (1)
-
terry.reedy