diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-15 19:15:07 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-07-15 19:15:07 (GMT) |
commit | 8cdc40e3b0622ea4eeb8b2c9b0e6796be685d16d (patch) | |
tree | b0570fc82de1c24aee5e81c8199de476179ca35f | |
parent | e22813067e4f62629a9c24947c29a55861fb05f1 (diff) | |
download | cpython-8cdc40e3b0622ea4eeb8b2c9b0e6796be685d16d.zip cpython-8cdc40e3b0622ea4eeb8b2c9b0e6796be685d16d.tar.gz cpython-8cdc40e3b0622ea4eeb8b2c9b0e6796be685d16d.tar.bz2 |
Issue #11603: Fix a crash when __str__ is rebound as __repr__.
Patch by Andreas Stührk.
-rw-r--r-- | Lib/test/test_descr.py | 8 | ||||
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | Objects/typeobject.c | 2 |
3 files changed, 12 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index c74e232..0ce85f0 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -4252,6 +4252,14 @@ order (MRO) for bases """ with self.assertRaises(TypeError): str.__add__(fake_str, "abc") + def test_repr_as_str(self): + # Issue #11603: crash or infinite loop when rebinding __str__ as + # __repr__. + class Foo: + pass + Foo.__repr__ = Foo.__str__ + foo = Foo() + str(foo) class DictProxyTests(unittest.TestCase): def setUp(self): @@ -13,6 +13,9 @@ Core and Builtins Library ------- +- Issue #11603: Fix a crash when __str__ is rebound as __repr__. Patch by + Andreas Stührk. + What's New in Python 3.1.4? =========================== diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 5c20e0d..70971f3 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2821,7 +2821,7 @@ object_str(PyObject *self) unaryfunc f; f = Py_TYPE(self)->tp_repr; - if (f == NULL) + if (f == NULL || f == object_str) f = object_repr; return f(self); } |