diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-10-30 23:25:50 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-10-30 23:25:50 (GMT) |
commit | 3f209b63f5c639a9413a32655bfd6f424675e399 (patch) | |
tree | aabea8a398d0a695a1addf3ca9cdf5f2b784f36c /Tools | |
parent | dc22031a61184009f4a3bd030d7042fb0c259569 (diff) | |
parent | a05e7f67436b73013f998e84271d3430f56253c1 (diff) | |
download | cpython-3f209b63f5c639a9413a32655bfd6f424675e399.zip cpython-3f209b63f5c639a9413a32655bfd6f424675e399.tar.gz cpython-3f209b63f5c639a9413a32655bfd6f424675e399.tar.bz2 |
Merge with 3.4
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/fixdiv.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Tools/scripts/fixdiv.py b/Tools/scripts/fixdiv.py index 4ecbea1..20f3386 100755 --- a/Tools/scripts/fixdiv.py +++ b/Tools/scripts/fixdiv.py @@ -335,8 +335,6 @@ class FileContext: 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) |