summaryrefslogtreecommitdiffstats
path: root/Modules/_bisectmodule.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-08-09 18:32:54 (GMT)
committerGitHub <noreply@github.com>2021-08-09 18:32:54 (GMT)
commit058fb35b57ca8c5063d16ec818e668b3babfea65 (patch)
tree7c476bb7c59e65a9e8c83ca633068be3f14a1975 /Modules/_bisectmodule.c
parent7d14fdb03c3e8384c01da1b21647ce837ed6a29c (diff)
downloadcpython-058fb35b57ca8c5063d16ec818e668b3babfea65.zip
cpython-058fb35b57ca8c5063d16ec818e668b3babfea65.tar.gz
cpython-058fb35b57ca8c5063d16ec818e668b3babfea65.tar.bz2
bpo-44854: Remove trailing whitespaces (GH-27689)
Diffstat (limited to 'Modules/_bisectmodule.c')
-rw-r--r--Modules/_bisectmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_bisectmodule.c b/Modules/_bisectmodule.c
index aa63b68..26c4b9b 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 {