summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_set.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-08-28 19:37:11 (GMT)
committerGeorg Brandl <georg@python.org>2006-08-28 19:37:11 (GMT)
commitc4996ba794d9438be8e472ad5f6c3c55fbf751e8 (patch)
treecc1017f4d5a8f12da19566dc6a00e4b6728d9106 /Lib/test/test_set.py
parentb3fa66fe30c66adbbd54588f390c4d332285880d (diff)
downloadcpython-c4996ba794d9438be8e472ad5f6c3c55fbf751e8.zip
cpython-c4996ba794d9438be8e472ad5f6c3c55fbf751e8.tar.gz
cpython-c4996ba794d9438be8e472ad5f6c3c55fbf751e8.tar.bz2
Fix str() and repr() of empty sets.
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 556e390..03621a6 100644
--- a/Lib/test/test_set.py
+++ b/Lib/test/test_set.py
@@ -631,7 +631,7 @@ class TestBasicOpsEmpty(TestBasicOps):
self.set = set(self.values)
self.dup = set(self.values)
self.length = 0
- self.repr = "{}"
+ self.repr = "set()"
#------------------------------------------------------------------------------