From b021ba50284cdfc200b5d18dc4dea80218fcbe91 Mon Sep 17 00:00:00 2001 From: Andrey <45011689+heckad@users.noreply.github.com> Date: Mon, 29 Apr 2019 14:33:26 +1000 Subject: [PATCH] Fix typo in 'tandem' word (GH-12998) (GH-12998) --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index 342dc10af6a..4e165c3311d 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3207,7 +3207,7 @@ main_loop: } case TARGET(LOAD_METHOD): { - /* Designed to work in tamdem with CALL_METHOD. */ + /* Designed to work in tandem with CALL_METHOD. */ PyObject *name = GETITEM(names, oparg); PyObject *obj = TOP(); PyObject *meth = NULL;