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/DirList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/lib-stdwin/DirList.py') diff --git a/Lib/lib-stdwin/DirList.py b/Lib/lib-stdwin/DirList.py index 4b98b1dc42..446d33b04c 100644 --- a/Lib/lib-stdwin/DirList.py +++ b/Lib/lib-stdwin/DirList.py @@ -28,7 +28,7 @@ class DirList(VSplit): class DirListWindow(WindowParent): # def create(self, dirname): - self = WindowParent.create(self, (dirname, (0, 0))) + self = WindowParent.create(self, dirname, (0, 0)) child = DirList().create(self, dirname) self.realize() return self -- cgit v1.2.1