This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vajrasky
Recipients docs@python, vajrasky
Date 2013-08-05.09:43:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375695788.15.0.911930238621.issue18661@psf.upfronthosting.co.za>
In-reply-to
Content
I guess, there is a typo in Modules/grpmodule.c. See the patch below:

diff -r f4f81ebc3de9 Modules/grpmodule.c
--- a/Modules/grpmodule.c	Sun Aug 04 15:50:08 2013 -0400
+++ b/Modules/grpmodule.c	Mon Aug 05 17:40:33 2013 +0800
@@ -10,7 +10,7 @@
    {"gr_name", "group name"},
    {"gr_passwd", "password"},
    {"gr_gid", "group id"},
-   {"gr_mem", "group memebers"},
+   {"gr_mem", "group members"},
    {0}
 };

I am not sure whether the line after typo should be {0} or {0, 0}.
History
Date User Action Args
2013-08-05 09:43:08vajraskysetrecipients: + vajrasky, docs@python
2013-08-05 09:43:08vajraskysetmessageid: <1375695788.15.0.911930238621.issue18661@psf.upfronthosting.co.za>
2013-08-05 09:43:08vajraskylinkissue18661 messages
2013-08-05 09:43:07vajraskycreate