From f9efb8b18b689ff5ef7f12e6124f21532d799516 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sun, 10 Jul 2016 12:37:30 +0300 Subject: Issue #27474: Unified error messages in the __contains__ method of bytes and bytearray for integers in and out of the Py_ssize_t range. Patch by Xiang Zhang. --- Objects/bytes_methods.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/bytes_methods.c') diff --git a/Objects/bytes_methods.c b/Objects/bytes_methods.c index d0f784ecd4..d7f061bcf0 100644 --- a/Objects/bytes_methods.c +++ b/Objects/bytes_methods.c @@ -645,7 +645,7 @@ _Py_bytes_count(const char *str, Py_ssize_t len, PyObject *args) int _Py_bytes_contains(const char *str, Py_ssize_t len, PyObject *arg) { - Py_ssize_t ival = PyNumber_AsSsize_t(arg, PyExc_ValueError); + Py_ssize_t ival = PyNumber_AsSsize_t(arg, NULL); if (ival == -1 && PyErr_Occurred()) { Py_buffer varg; Py_ssize_t pos; -- cgit v1.2.1