diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-10-03 20:03:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-03 20:03:49 +0300 |
commit | 93242d7a2ad8c22f72ff84b63ed9046d32f6aa8e (patch) | |
tree | 7d119733b0de07024169d68ac5af8ac63422023f /Modules/_bisectmodule.c | |
parent | 5ba61f488da2e092a81c3d126c5827dad6ab2006 (diff) | |
download | cpython-git-93242d7a2ad8c22f72ff84b63ed9046d32f6aa8e.tar.gz |
[3.10] Remove trailing spaces (GH-28709)
Diffstat (limited to 'Modules/_bisectmodule.c')
-rw-r--r-- | Modules/_bisectmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_bisectmodule.c b/Modules/_bisectmodule.c index aa63b68560..26c4b9bfb2 100644 --- a/Modules/_bisectmodule.c +++ b/Modules/_bisectmodule.c @@ -240,7 +240,7 @@ _bisect_insort_left_impl(PyObject *module, PyObject *a, PyObject *x, { PyObject *result, *key_x; Py_ssize_t index; - + if (key == Py_None) { index = internal_bisect_left(a, x, lo, hi, key); } else { |