mercurial/cext/pathencode.c
changeset 48821 b0dd39b91e7a
parent 48330 e35807332598
--- a/mercurial/cext/pathencode.c	Sun Feb 20 16:13:57 2022 -0700
+++ b/mercurial/cext/pathencode.c	Sun Feb 20 16:09:02 2022 -0700
@@ -535,8 +535,7 @@
 	Py_ssize_t len, newlen;
 	PyObject *ret;
 
-	if (!PyArg_ParseTuple(args, PY23("s#:lowerencode", "y#:lowerencode"),
-	                      &path, &len)) {
+	if (!PyArg_ParseTuple(args, "y#:lowerencode", &path, &len)) {
 		return NULL;
 	}
 
@@ -711,7 +710,7 @@
 		}
 	}
 
-	shaobj = PyObject_CallFunction(shafunc, PY23("s#", "y#"), str, len);
+	shaobj = PyObject_CallFunction(shafunc, "y#", str, len);
 
 	if (shaobj == NULL) {
 		return -1;