diff options
author | Christian Heimes <christian@cheimes.de> | 2007-11-22 05:56:35 +0000 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-11-22 05:56:35 +0000 |
commit | a1c541d9fc27fa7469b270b88bc579c2678f003e (patch) | |
tree | d5e831e748da6db76004186d0a78bc82921bb157 /Lib/test/string_tests.py | |
parent | b584e780111539888b934f7e09f15ab45aa20f2b (diff) | |
download | cpython-a1c541d9fc27fa7469b270b88bc579c2678f003e.tar.gz |
Removed some leftovers from the str8 days
Diffstat (limited to 'Lib/test/string_tests.py')
-rw-r--r-- | Lib/test/string_tests.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py index e9285a62f6..909f947472 100644 --- a/Lib/test/string_tests.py +++ b/Lib/test/string_tests.py @@ -586,10 +586,6 @@ class CommonTest(BaseTest): a = self.type2test('DNSSEC') b = self.type2test('') for c in a: -## # Special case for the str8, since indexing returns a integer -## # XXX Maybe it would be a good idea to seperate str8's tests... -## if self.type2test == str8: -## c = chr(c) b += c hash(b) self.assertEqual(hash(a), hash(b)) |