* 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.
diff --git a/Lib/stdwin/HVSplit.py b/Lib/stdwin/HVSplit.py
index c42327d..62e0de7 100755
--- a/Lib/stdwin/HVSplit.py
+++ b/Lib/stdwin/HVSplit.py
@@ -55,8 +55,8 @@
class HSplit(HVSplit):
def create(self, parent):
- return HVSplit.create(self, (parent, 0))
+ return HVSplit.create(self, parent, 0)
class VSplit(HVSplit):
def create(self, parent):
- return HVSplit.create(self, (parent, 1))
+ return HVSplit.create(self, parent, 1)