8000 fix indentation · python/cpython@5d1bf31 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5d1bf31

Browse files
committed
fix indentation
1 parent 11eab6d commit 5d1bf31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/_functoolsmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ _functools_reduce_impl(PyObject *module, PyObject *func, PyObject *seq,
10161016

10171017
if (result == NULL)
10181018
PyErr_SetString(PyExc_TypeError,
1019-
"reduce() of empty iterable with no initial value");
1019+
"reduce() of empty iterable with no initial value");
10201020

10211021
Py_DECREF(it);
10221022
return result;
@@ -1401,7 +1401,7 @@ bounded_lru_cache_update_lock_held(lru_cache_object *self,
14011401
We created one other reference when the link was created.
14021402
The linked list only has borrowed references. */
14031403
res = _PyDict_Pop_KnownHash((PyDictObject*)self->cache, link->key,
1404-
link->hash, &popresult);
1404+
link->hash, &popresult);
14051405
if (res < 0) {
14061406
/* An error arose while trying to remove the oldest key (the one
14071407
being evicted) from the cache. We restore the link to its

0 commit comments

Comments
 (0)
0