summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-04-21 19:26:45 (GMT)
committerGuido van Rossum <guido@python.org>1991-04-21 19:26:45 (GMT)
commitb8f5c093dc0b6d603fbfb1ef2566667ef55ad6d6 (patch)
treeb7a739c1c8896164b8dcc6247a3acad65c80576d /Lib
parent80c9d88cbfb50dcf65e57da7283ee2d73b8d3698 (diff)
downloadcpython-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')
-rw-r--r--Lib/lib-stdwin/Split.py19
-rwxr-xr-xLib/stdwin/Split.py19
2 files changed, 18 insertions, 20 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)
#
diff --git a/Lib/stdwin/Split.py b/Lib/stdwin/Split.py
index ef0f2fc..80e1e74 100755
--- a/Lib/stdwin/Split.py
+++ b/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)
#