Author: martin.v.loewis
Date: Thu Aug 30 12:21:51 2007
New Revision: 57715

Modified:
   python/branches/py3k/Modules/nismodule.c
Log:
Use s# instead of t# for nis_match.


Modified: python/branches/py3k/Modules/nismodule.c
==============================================================================
--- python/branches/py3k/Modules/nismodule.c    (original)
+++ python/branches/py3k/Modules/nismodule.c    Thu Aug 30 12:21:51 2007
@@ -163,7 +163,7 @@
        static char *kwlist[] = {"key", "map", "domain", NULL};
 
        if (!PyArg_ParseTupleAndKeywords(args, kwdict,
-                                        "t#s|s:match", kwlist,
+                                        "s#s|s:match", kwlist,
                                         &key, &keylen, &map, &domain))
                return NULL;
        if (!domain && ((err = yp_get_default_domain(&domain)) != 0))
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to