[Python-3000-checkins] r58791 - python/branches/py3k-pep3137/Objects/codeobject.c

guido.van.rossum python-3000-checkins at python.org
Fri Nov 2 20:49:03 CET 2007


Author: guido.van.rossum
Date: Fri Nov  2 20:49:03 2007
New Revision: 58791

Modified:
   python/branches/py3k-pep3137/Objects/codeobject.c
Log:
And another S -> U fix.


Modified: python/branches/py3k-pep3137/Objects/codeobject.c
==============================================================================
--- python/branches/py3k-pep3137/Objects/codeobject.c	(original)
+++ python/branches/py3k-pep3137/Objects/codeobject.c	Fri Nov  2 20:49:03 2007
@@ -204,7 +204,7 @@
 	int firstlineno;
 	PyObject *lnotab;
 
-	if (!PyArg_ParseTuple(args, "iiiiiSO!O!O!SSiS|O!O!:code",
+	if (!PyArg_ParseTuple(args, "iiiiiSO!O!O!UUiS|O!O!:code",
 			      &argcount, &kwonlyargcount,
 				  &nlocals, &stacksize, &flags,
 			      &code,


More information about the Python-3000-checkins mailing list