[Python-checkins] r77182 - in python/branches/release26-maint: Modules/flmodule.c

ezio.melotti python-checkins at python.org
Thu Dec 31 14:49:19 CET 2009


Author: ezio.melotti
Date: Thu Dec 31 14:49:19 2009
New Revision: 77182

Log:
Merged revisions 77181 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77181 | ezio.melotti | 2009-12-31 15:47:24 +0200 (Thu, 31 Dec 2009) | 1 line
  
  #7613: missing ) in flmodule.c
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Modules/flmodule.c

Modified: python/branches/release26-maint/Modules/flmodule.c
==============================================================================
--- python/branches/release26-maint/Modules/flmodule.c	(original)
+++ python/branches/release26-maint/Modules/flmodule.c	Thu Dec 31 14:49:19 2009
@@ -156,7 +156,7 @@
 	}
 	else {
         PyObject *a, *b;
-        if (!PyArg_UnpackTuple(args, "set_call_back", 2, 2, &a, &b)
+        if (!PyArg_UnpackTuple(args, "set_call_back", 2, 2, &a, &b))
             return NULL;
 		Py_XDECREF(g->ob_callback);
 		Py_XDECREF(g->ob_callback_arg);


More information about the Python-checkins mailing list