diff options
author | Guido van Rossum <guido@python.org> | 1991-04-21 19:26:45 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-04-21 19:26:45 (GMT) |
commit | b8f5c093dc0b6d603fbfb1ef2566667ef55ad6d6 (patch) | |
tree | b7a739c1c8896164b8dcc6247a3acad65c80576d /Lib/lib-stdwin | |
parent | 80c9d88cbfb50dcf65e57da7283ee2d73b8d3698 (diff) | |
download | cpython-b8f5c093dc0b6d603fbfb1ef2566667ef55ad6d6.zip cpython-b8f5c093dc0b6d603fbfb1ef2566667ef55ad6d6.tar.gz cpython-b8f5c093dc0b6d603fbfb1ef2566667ef55ad6d6.tar.bz2 |
Use built-in remove() method of lists instead of util.remove.
Diffstat (limited to 'Lib/lib-stdwin')
-rw-r--r-- | Lib/lib-stdwin/Split.py | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/Lib/lib-stdwin/Split.py b/Lib/lib-stdwin/Split.py index ef0f2fc..80e1e74 100644 --- a/Lib/lib-stdwin/Split.py +++ b/Lib/lib-stdwin/Split.py @@ -6,7 +6,6 @@ Error = 'Split.Error' # Exception import rect -from util import remove class Split(): # @@ -89,15 +88,15 @@ class Split(): def delchild(self, child): if child not in self.children: raise Error, 'delchild: child not in list' - remove(child, self.children) + self.children.remove(child) if child in self.mouse_interest: - remove(child, self.mouse_interest) + self.mouse_interest.remove(child) if child in self.keybd_interest: - remove(child, self.keybd_interest) + self.keybd_interest.remove(child) if child in self.timer_interest: - remove(child, self.timer_interest) + self.timer_interest.remove(child) if child in self.altdraw_interest: - remove(child, self.altdraw_interest) + self.altdraw_interest.remove(child) if child = self.mouse_focus: self.mouse_focus = 0 # @@ -107,7 +106,7 @@ class Split(): self.parent.need_mouse(self) def no_mouse(self, child): if child in self.mouse_interest: - remove(child, self.mouse_interest) + self.mouse_interest.remove(child) if not self.mouse_interest: self.parent.no_mouse(self) # @@ -117,7 +116,7 @@ class Split(): self.parent.need_keybd(self) def no_keybd(self, child): if child in self.keybd_interest: - remove(child, self.keybd_interest) + self.keybd_interest.remove(child) if not self.keybd_interest: self.parent.no_keybd(self) # @@ -127,7 +126,7 @@ class Split(): self.parent.need_timer(self) def no_timer(self, child): if child in self.timer_interest: - remove(child, self.timer_interest) + self.timer_interest.remove(child) if not self.timer_interest: self.parent.no_timer(self) # @@ -137,7 +136,7 @@ class Split(): self.parent.need_altdraw(self) def no_altdraw(self, child): if child in self.altdraw_interest: - remove(child, self.altdraw_interest) + self.altdraw_interest.remove(child) if not self.altdraw_interest: self.parent.no_altdraw(self) # |