mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Make __module__ writable except in restricted mode (like for classic classes).
This commit is contained in:
parent
ff71c98449
commit
6b29c0147b
2 changed files with 2 additions and 2 deletions
|
@ -189,7 +189,7 @@ static PyGetSetDef meth_getsets [] = {
|
|||
#define OFF(x) offsetof(PyCFunctionObject, x)
|
||||
|
||||
static PyMemberDef meth_members[] = {
|
||||
{"__module__", T_OBJECT, OFF(m_module)},
|
||||
{"__module__", T_OBJECT, OFF(m_module), WRITE_RESTRICTED},
|
||||
{NULL}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue