]> granicus.if.org Git - python/commitdiff
Fix typo in 'tandem' word (GH-12998) (GH-12998)
authorAndrey <45011689+heckad@users.noreply.github.com>
Mon, 29 Apr 2019 04:33:26 +0000 (14:33 +1000)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>
Mon, 29 Apr 2019 04:33:26 +0000 (21:33 -0700)
Python/ceval.c

index 342dc10af6a629b80ceb4017a7b584fe3f589a9b..4e165c3311d4a6c9a50a9851fab8f7a2f9f24b6b 100644 (file)
@@ -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;