From fea2af1e9b0c99cac6cb8806c4af651a38e92d07 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 4 Jan 1993 09:16:51 +0000 Subject: * More changes due to stricter argument passing rules * Fixed calendar.py, mimetools.py, whrandom.py to cope with time.time() returning a floating point number. (And fix old bug in calendar) * Add recursion level to mainloop.mainloop(), to make it reentrant. --- Lib/lib-stdwin/WindowParent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/lib-stdwin/WindowParent.py') diff --git a/Lib/lib-stdwin/WindowParent.py b/Lib/lib-stdwin/WindowParent.py index 1964d38a6a..cdec10b283 100644 --- a/Lib/lib-stdwin/WindowParent.py +++ b/Lib/lib-stdwin/WindowParent.py @@ -136,9 +136,9 @@ class WindowParent(ManageOneChild): if self.win: self.win.change(area) # - def scroll(self, args): + def scroll(self, area, vector): if self.win: - self.win.scroll(args) + self.win.scroll(area, vector) # def settimer(self, itimer): if self.win: -- cgit v1.2.1