Patch #521670: Remove unused sys import.

This commit is contained in:
Martin v. Löwis 2002-02-23 22:31:53 +00:00
parent 9f4341b3b0
commit 9d51fc8972

View file

@ -1,6 +1,6 @@
"""Simple textbox editing widget with Emacs-like keybindings."""
import sys, curses, ascii
import curses, ascii
def rectangle(win, uly, ulx, lry, lrx):
"Draw a rectangle."
@ -132,7 +132,6 @@ def gather(self):
for y in range(self.maxy+1):
self.win.move(y, 0)
stop = self._end_of_line(y)
#sys.stderr.write("y=%d, _end_of_line(y)=%d\n" % (y, stop))
if stop == 0 and self.stripspaces:
continue
for x in range(self.maxx+1):