[Python-checkins] cpython (merge 3.3 -> default): Issue #18661: typo in grp.struct_group docstring (fix merged from 3.3). Thanks

mark.dickinson python-checkins at python.org
Mon Aug 5 18:58:19 CEST 2013


http://hg.python.org/cpython/rev/f534960c2c02
changeset:   85043:f534960c2c02
parent:      85040:9bee1fd64ee6
parent:      85042:791034a0ae1e
user:        Mark Dickinson <dickinsm at gmail.com>
date:        Mon Aug 05 17:57:54 2013 +0100
summary:
  Issue #18661: typo in grp.struct_group docstring (fix merged from 3.3).  Thanks Vajrasky Kok.

files:
  Modules/grpmodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/grpmodule.c b/Modules/grpmodule.c
--- a/Modules/grpmodule.c
+++ b/Modules/grpmodule.c
@@ -10,7 +10,7 @@
    {"gr_name", "group name"},
    {"gr_passwd", "password"},
    {"gr_gid", "group id"},
-   {"gr_mem", "group memebers"},
+   {"gr_mem", "group members"},
    {0}
 };
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list