commit | c4996ba794d9438be8e472ad5f6c3c55fbf751e8 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Mon Aug 28 19:37:11 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Mon Aug 28 19:37:11 2006 +0000 |
tree | cc1017f4d5a8f12da19566dc6a00e4b6728d9106 | |
parent | b3fa66fe30c66adbbd54588f390c4d332285880d [diff] |
Fix str() and repr() of empty sets.
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 @@ self.set = set(self.values) self.dup = set(self.values) self.length = 0 - self.repr = "{}" + self.repr = "set()" #------------------------------------------------------------------------------