Skip to content

Commit 2236ed6

Browse files
committed
Add comments for sys.__getattr__
1 parent 50a37fb commit 2236ed6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Python/sysmodule.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -974,7 +974,9 @@ sys_exit_impl(PyObject *module, PyObject *status)
974974
return NULL;
975975
}
976976

977-
977+
// This function is used to warn about the future change of sys.abiflags
978+
// from absent to a meaningful value on all platforms.
979+
// It can be removed when the change is made.
978980
static PyObject *
979981
sys___getattr__(PyObject *module, PyObject *name)
980982
{

0 commit comments

Comments
 (0)