Make __module__ settable on functions and methods.
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index aa64ff1..5e967d3 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -189,7 +189,7 @@
 #define OFF(x) offsetof(PyCFunctionObject, x)
 
 static PyMemberDef meth_members[] = {
-	{"__module__",    T_OBJECT,     OFF(m_module),       READONLY},
+	{"__module__",    T_OBJECT,     OFF(m_module)},
 	{NULL}
 };