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;
     }
 
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to