[Python-3000-checkins] r58809 - python/branches/py3k-pep3137/Modules/_sqlite/module.c

guido.van.rossum python-3000-checkins at python.org
Fri Nov 2 22:35:38 CET 2007


Author: guido.van.rossum
Date: Fri Nov  2 22:35:38 2007
New Revision: 58809

Modified:
   python/branches/py3k-pep3137/Modules/_sqlite/module.c
Log:
Fix one bootstrap issue in sqlite (S -> U format code again).
Many other issues are now revealed.


Modified: python/branches/py3k-pep3137/Modules/_sqlite/module.c
==============================================================================
--- python/branches/py3k-pep3137/Modules/_sqlite/module.c	(original)
+++ python/branches/py3k-pep3137/Modules/_sqlite/module.c	Fri Nov  2 22:35:38 2007
@@ -146,7 +146,7 @@
     PyObject* callable;
     PyObject* retval = NULL;
 
-    if (!PyArg_ParseTuple(args, "SO", &orig_name, &callable)) {
+    if (!PyArg_ParseTuple(args, "UO", &orig_name, &callable)) {
         return NULL;
     }
 


More information about the Python-3000-checkins mailing list