mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00
* 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.
This commit is contained in:
parent
a2b7f40513
commit
fea2af1e9b
18 changed files with 113 additions and 78 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue