summaryrefslogtreecommitdiffstats
path: root/Lib/lib-stdwin
diff options
context:
space:
mode:
authorSjoerd Mullender <sjoerd@acm.org>1993-08-25 14:09:01 (GMT)
committerSjoerd Mullender <sjoerd@acm.org>1993-08-25 14:09:01 (GMT)
commit4fddf33c87e8a377e98b8d05eb5a9808986081c2 (patch)
tree719fb0c4c3d7fe0bafeb6d2b31a96d678d20aa55 /Lib/lib-stdwin
parentf64992e95d3b87799d4a423d2d0c0047b177c56b (diff)
downloadcpython-4fddf33c87e8a377e98b8d05eb5a9808986081c2.zip
cpython-4fddf33c87e8a377e98b8d05eb5a9808986081c2.tar.gz
cpython-4fddf33c87e8a377e98b8d05eb5a9808986081c2.tar.bz2
XEvent.py: Added support for ExposeEvent.
profile.py: Some speed improvements (I hope). rect.py: Bug fix in union().
Diffstat (limited to 'Lib/lib-stdwin')
-rw-r--r--Lib/lib-stdwin/rect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-stdwin/rect.py b/Lib/lib-stdwin/rect.py
index 9bc6342..393eafd 100644
--- a/Lib/lib-stdwin/rect.py
+++ b/Lib/lib-stdwin/rect.py
@@ -46,7 +46,7 @@ def intersect(list):
# This works with a list or tuple argument.
#
def union(list):
- (left, top), (right, bottom) = empty
+ (left, top), (right, bottom) = list[0]
for (l, t), (r, b) in list[1:]:
if not is_empty(((l, t), (r, b))):
if l < left: left = l