commit | 4d279c1f80428c094cd5e5fbd1491f16fda177bf | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Thu Nov 22 02:55:35 2007 +0000 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Thu Nov 22 02:55:35 2007 +0000 |
tree | 6c8b77ec2acc3533d35cd8894d6e1be3170863ab | |
parent | 39599dca9db7431510f1d68609db5ea0b60af2cb [diff] |
Typo in bytes.replace(): the buffer interface was always used.
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index d341436..d135991 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c
@@ -2594,7 +2594,7 @@ from_s = PyString_AS_STRING(from); from_len = PyString_GET_SIZE(from); } - if (PyUnicode_Check(from)) + else if (PyUnicode_Check(from)) return PyUnicode_Replace((PyObject *)self, from, to, count); else if (PyObject_AsCharBuffer(from, &from_s, &from_len))