diff options
-rw-r--r-- | Objects/funcobject.c | 2 | ||||
-rw-r--r-- | Objects/methodobject.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Objects/funcobject.c b/Objects/funcobject.c index b162fdf..fa24131 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.c @@ -159,7 +159,7 @@ static PyMemberDef func_memberlist[] = { RESTRICTED|READONLY}, {"func_name", T_OBJECT, OFF(func_name), READONLY}, {"__name__", T_OBJECT, OFF(func_name), READONLY}, - {"__module__", T_OBJECT, OFF(func_module), READONLY}, + {"__module__", T_OBJECT, OFF(func_module)}, {NULL} /* Sentinel */ }; 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 @@ static PyGetSetDef meth_getsets [] = { #define OFF(x) offsetof(PyCFunctionObject, x) static PyMemberDef meth_members[] = { - {"__module__", T_OBJECT, OFF(m_module), READONLY}, + {"__module__", T_OBJECT, OFF(m_module)}, {NULL} }; |