]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#5037 proxy __unicode__ correctly
authorBenjamin Peterson <benjamin@python.org>
Thu, 19 Nov 2009 03:00:02 +0000 (03:00 +0000)
committerBenjamin Peterson <benjamin@python.org>
Thu, 19 Nov 2009 03:00:02 +0000 (03:00 +0000)
Lib/test/test_weakref.py
Misc/NEWS
Objects/weakrefobject.c

index ed6314702cad7f8b445f7d84746155a825380ecb..2106d8cd9bd50796234b7820fd8066712d60dd9f 100644 (file)
@@ -188,6 +188,17 @@ class ReferencesTestCase(TestBase):
         self.assertEqual(L3[:5], p3[:5])
         self.assertEqual(L3[2:5], p3[2:5])
 
+    def test_proxy_unicode(self):
+        # See bug 5037
+        class C(object):
+            def __str__(self):
+                return "string"
+            def __unicode__(self):
+                return u"unicode"
+        instance = C()
+        self.assertTrue("__unicode__" in dir(weakref.proxy(instance)))
+        self.assertEqual(unicode(weakref.proxy(instance)), u"unicode")
+
     def test_proxy_index(self):
         class C:
             def __index__(self):
index d0ed47ce4fb4d478c9e6f09d6a194f2ae85f6ef8..e1841e813221580da0e94ca2fad1725cead27629 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -440,6 +440,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #5037: Proxy the __unicode__ special method instead to __unicode__
+  instead of __str__.
+
 - Issue #7341: Close the internal file object in the TarFile constructor in
   case of an error.
 
index 9cdd02178d7083cbb6e0a74cca13712c00df97cb..1a998b64bd3d73d51f646239cd37694c5f63fd83 100644 (file)
@@ -433,6 +433,13 @@ proxy_checkref(PyWeakReference *proxy)
         return generic(proxy, v, w); \
     }
 
+#define WRAP_METHOD(method, special) \
+    static PyObject * \
+    method(PyObject *proxy) { \
+           UNWRAP(proxy); \
+               return PyObject_CallMethod(proxy, special, ""); \
+       }
+
 
 /* direct slots */
 
@@ -593,6 +600,15 @@ proxy_iternext(PyWeakReference *proxy)
 }
 
 
+WRAP_METHOD(proxy_unicode, "__unicode__");
+
+
+static PyMethodDef proxy_methods[] = {
+       {"__unicode__", (PyCFunction)proxy_unicode, METH_NOARGS},
+       {NULL, NULL}
+};
+
+
 static PyNumberMethods proxy_as_number = {
     proxy_add,              /*nb_add*/
     proxy_sub,              /*nb_subtract*/
@@ -684,6 +700,7 @@ _PyWeakref_ProxyType = {
     0,                                  /* tp_weaklistoffset */
     (getiterfunc)proxy_iter,            /* tp_iter */
     (iternextfunc)proxy_iternext,       /* tp_iternext */
+       proxy_methods,                      /* tp_methods */
 };