summaryrefslogtreecommitdiff
path: root/Lib/test/test_set.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-03-15 05:18:48 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2011-03-15 05:18:48 +0200
commit25f2d241044d3b0aed66b635f191511f11d34f53 (patch)
treee4fd51cf52375335217f0470caa2df57174d3958 /Lib/test/test_set.py
parent3346922a7257ab36cc784c06797aba63119ba335 (diff)
downloadcpython-25f2d241044d3b0aed66b635f191511f11d34f53.tar.gz
#11515: fix several typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Lib/test/test_set.py')
-rw-r--r--Lib/test/test_set.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py
index de0d9a8a34..fdbfe19c91 100644
--- a/Lib/test/test_set.py
+++ b/Lib/test/test_set.py
@@ -584,7 +584,7 @@ class TestSet(TestJointOps):
self.le_called = True
return False
- # This first tries the bulitin rich set comparison, which doesn't know
+ # This first tries the builtin rich set comparison, which doesn't know
# how to handle the custom object. Upon returning NotImplemented, the
# corresponding comparison on the right object is invoked.
myset = {1, 2, 3}