summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode.py
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2010-08-13 00:12:59 (GMT)
committerEric Smith <eric@trueblade.com>2010-08-13 00:12:59 (GMT)
commit06124c0df85475191e3c9bb2cc06b461dbd643fb (patch)
tree637f5a8a7c8c52f493f36998eff27f4be26c0cad /Lib/test/test_unicode.py
parent5f2a7bce2ed3dce23b9e167e17746ba3dbab9d58 (diff)
downloadcpython-06124c0df85475191e3c9bb2cc06b461dbd643fb.zip
cpython-06124c0df85475191e3c9bb2cc06b461dbd643fb.tar.gz
cpython-06124c0df85475191e3c9bb2cc06b461dbd643fb.tar.bz2
Merged revisions 83966 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83966 | eric.smith | 2010-08-12 17:55:30 -0400 (Thu, 12 Aug 2010) | 1 line Remove unused test class. ........
Diffstat (limited to 'Lib/test/test_unicode.py')
-rw-r--r--Lib/test/test_unicode.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py
index 2ed9a45..8494886 100644
--- a/Lib/test/test_unicode.py
+++ b/Lib/test/test_unicode.py
@@ -525,11 +525,6 @@ class UnicodeTest(
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)