grp_getgrgid(), grp_getgrnam(): Patch # 868499, improvement to the error
messages.
diff --git a/Modules/grpmodule.c b/Modules/grpmodule.c
index ab9d3c5..136dca0 100644
--- a/Modules/grpmodule.c
+++ b/Modules/grpmodule.c
@@ -90,7 +90,7 @@
     if (!PyArg_ParseTuple(args, "i:getgrgid", &gid))
         return NULL;
     if ((p = getgrgid(gid)) == NULL) {
-        PyErr_SetString(PyExc_KeyError, "getgrgid(): gid not found");
+	PyErr_Format(PyExc_KeyError, "getgrgid(): gid not found: %d", gid);
         return NULL;
     }
     return mkgrent(p);
@@ -104,7 +104,7 @@
     if (!PyArg_ParseTuple(args, "s:getgrnam", &name))
         return NULL;
     if ((p = getgrnam(name)) == NULL) {
-        PyErr_SetString(PyExc_KeyError, "getgrnam(): name not found");
+	PyErr_Format(PyExc_KeyError, "getgrnam(): name not found: %s", name);
         return NULL;
     }
     return mkgrent(p);