diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-09-10 23:45:42 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-09-10 23:45:42 +0300 |
commit | dd6507eb8617fd435b9d282215f5d802bf45b64f (patch) | |
tree | cf585d874c0a58a84fadedfffd481d2aae924fce /Modules | |
parent | 9f69b86756bd7084256fda9499111313a081f033 (diff) | |
parent | 148679982f851e2952b9d34e6ae7932f89650c1d (diff) | |
download | cpython-git-dd6507eb8617fd435b9d282215f5d802bf45b64f.tar.gz |
Issue #22369: Change "context manager protocol" to "context management protocol".
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/ossaudiodev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/ossaudiodev.c b/Modules/ossaudiodev.c index be90016347..2d0dd098d8 100644 --- a/Modules/ossaudiodev.c +++ b/Modules/ossaudiodev.c @@ -894,7 +894,7 @@ static PyMethodDef oss_methods[] = { /* Aliases for backwards compatibility */ { "flush", (PyCFunction)oss_sync, METH_VARARGS }, - /* Support for the context manager protocol */ + /* Support for the context management protocol */ { "__enter__", oss_self, METH_NOARGS }, { "__exit__", oss_exit, METH_VARARGS }, @@ -906,7 +906,7 @@ static PyMethodDef oss_mixer_methods[] = { { "close", (PyCFunction)oss_mixer_close, METH_NOARGS }, { "fileno", (PyCFunction)oss_mixer_fileno, METH_NOARGS }, - /* Support for the context manager protocol */ + /* Support for the context management protocol */ { "__enter__", oss_self, METH_NOARGS }, { "__exit__", oss_exit, METH_VARARGS }, |