commit | 994addc414cfac472e62d813067b486298bec0be | [log] [tgz] |
---|---|---|
author | Eric Smith <eric@trueblade.com> | Thu Aug 12 21:55:30 2010 +0000 |
committer | Eric Smith <eric@trueblade.com> | Thu Aug 12 21:55:30 2010 +0000 |
tree | 9718a463b971528df12b6d16d09825198822cb9b | |
parent | 3e2eab19b9079eb08cde8843c53490e0d3aee90c [diff] |
Remove unused test class.
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index ab6c153..d7d30d2 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py
@@ -519,11 +519,6 @@ return 'G(' + self.x + ')' return object.__format__(self, format_spec) - # class that returns a bad type from __format__ - class H: - def __format__(self, format_spec): - return 1.0 - class I(datetime.date): def __format__(self, format_spec): return self.strftime(format_spec)