Kaydet (Commit) 578a228e authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Issue 5982: Classmethod and staticmethod expose wrapped function with __func__.

üst 7937d939
...@@ -273,10 +273,23 @@ class FunctionDocstringTest(FuncAttrsTest): ...@@ -273,10 +273,23 @@ class FunctionDocstringTest(FuncAttrsTest):
self.assertEqual(self.b.__doc__, None) self.assertEqual(self.b.__doc__, None)
self.assertEqual(self.b.func_doc, None) self.assertEqual(self.b.func_doc, None)
class StaticMethodAttrsTest(unittest.TestCase):
def test_func_attribute(self):
def f():
pass
c = classmethod(f)
self.assert_(c.__func__ is f)
s = staticmethod(f)
self.assert_(s.__func__ is f)
def test_main(): def test_main():
test_support.run_unittest(FunctionPropertiesTest, ImplicitReferencesTest, test_support.run_unittest(FunctionPropertiesTest, ImplicitReferencesTest,
ArbitraryFunctionAttrTest, FunctionDictsTest, ArbitraryFunctionAttrTest, FunctionDictsTest,
FunctionDocstringTest) FunctionDocstringTest,
StaticMethodAttrsTest)
if __name__ == "__main__": if __name__ == "__main__":
test_main() test_main()
...@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1 ...@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins Core and Builtins
----------------- -----------------
- Issue #5982: staticmethod and classmethod now expose the wrapped
function with __func__.
- Added support for multiple context managers in the same with-statement. - Added support for multiple context managers in the same with-statement.
Deprecated contextlib.nested() which is no longer needed. Deprecated contextlib.nested() which is no longer needed.
......
...@@ -669,6 +669,11 @@ cm_init(PyObject *self, PyObject *args, PyObject *kwds) ...@@ -669,6 +669,11 @@ cm_init(PyObject *self, PyObject *args, PyObject *kwds)
return 0; return 0;
} }
static PyMemberDef cm_memberlist[] = {
{"__func__", T_OBJECT, offsetof(classmethod, cm_callable), READONLY},
{NULL} /* Sentinel */
};
PyDoc_STRVAR(classmethod_doc, PyDoc_STRVAR(classmethod_doc,
"classmethod(function) -> method\n\ "classmethod(function) -> method\n\
\n\ \n\
...@@ -719,7 +724,7 @@ PyTypeObject PyClassMethod_Type = { ...@@ -719,7 +724,7 @@ PyTypeObject PyClassMethod_Type = {
0, /* tp_iter */ 0, /* tp_iter */
0, /* tp_iternext */ 0, /* tp_iternext */
0, /* tp_methods */ 0, /* tp_methods */
0, /* tp_members */ cm_memberlist, /* tp_members */
0, /* tp_getset */ 0, /* tp_getset */
0, /* tp_base */ 0, /* tp_base */
0, /* tp_dict */ 0, /* tp_dict */
...@@ -819,6 +824,11 @@ sm_init(PyObject *self, PyObject *args, PyObject *kwds) ...@@ -819,6 +824,11 @@ sm_init(PyObject *self, PyObject *args, PyObject *kwds)
return 0; return 0;
} }
static PyMemberDef sm_memberlist[] = {
{"__func__", T_OBJECT, offsetof(staticmethod, sm_callable), READONLY},
{NULL} /* Sentinel */
};
PyDoc_STRVAR(staticmethod_doc, PyDoc_STRVAR(staticmethod_doc,
"staticmethod(function) -> method\n\ "staticmethod(function) -> method\n\
\n\ \n\
...@@ -866,7 +876,7 @@ PyTypeObject PyStaticMethod_Type = { ...@@ -866,7 +876,7 @@ PyTypeObject PyStaticMethod_Type = {
0, /* tp_iter */ 0, /* tp_iter */
0, /* tp_iternext */ 0, /* tp_iternext */
0, /* tp_methods */ 0, /* tp_methods */
0, /* tp_members */ sm_memberlist, /* tp_members */
0, /* tp_getset */ 0, /* tp_getset */
0, /* tp_base */ 0, /* tp_base */
0, /* tp_dict */ 0, /* tp_dict */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment