summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorAndrey <45011689+heckad@users.noreply.github.com>2019-04-29 04:33:26 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-04-29 04:33:26 (GMT)
commitb021ba50284cdfc200b5d18dc4dea80218fcbe91 (patch)
tree43c18c2c9e9d3fda51abb190742a018d0493351e /Python
parentdb81ba1393af40ba920a996651e2c11943c3663c (diff)
downloadcpython-b021ba50284cdfc200b5d18dc4dea80218fcbe91.zip
cpython-b021ba50284cdfc200b5d18dc4dea80218fcbe91.tar.gz
cpython-b021ba50284cdfc200b5d18dc4dea80218fcbe91.tar.bz2
Fix typo in 'tandem' word (GH-12998) (GH-12998)
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 342dc10..4e165c3 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;