summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-06-05 00:32:50 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-06-05 00:32:50 (GMT)
commit2aa6c38237535cbcfbf7ab079c960322c9a7f2c3 (patch)
treefc6764d3e2195dbd1ba6955d80351d292ec88bbb /Lib/test/test_descr.py
parente7e505ba6e2ba1768ba81e9dde652b6aff34c386 (diff)
downloadcpython-2aa6c38237535cbcfbf7ab079c960322c9a7f2c3.zip
cpython-2aa6c38237535cbcfbf7ab079c960322c9a7f2c3.tar.gz
cpython-2aa6c38237535cbcfbf7ab079c960322c9a7f2c3.tar.bz2
properly lookup the __format__ special method
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r--Lib/test/test_descr.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index d450eed..2fdd62f 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -1697,6 +1697,8 @@ order (MRO) for bases """
def some_number(self_, key):
self.assertEqual(key, "hi")
return 4
+ def format_impl(self, spec):
+ return "hello"
# It would be nice to have every special method tested here, but I'm
# only listing the ones I can remember outside of typeobject.c, since it
@@ -1715,6 +1717,7 @@ order (MRO) for bases """
("__enter__", run_context, iden, set(), {"__exit__" : swallow}),
("__exit__", run_context, swallow, set(), {"__enter__" : iden}),
("__complex__", complex, complex_num, set(), {}),
+ ("__format__", format, format_impl, set(), {}),
]
class Checker(object):