From f3c4ad14104ad45bd53df7b7e63cfc889efc3c05 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 8 Mar 2006 12:24:33 +0000 Subject: typo --- Modules/threadmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c index b0f7700..f15cacb 100644 --- a/Modules/threadmodule.c +++ b/Modules/threadmodule.c @@ -309,7 +309,7 @@ _ldict(localobject *self) return NULL; else { int i = PyDict_SetItem(tdict, self->key, ldict); - Py_DECREF(ldict); /* now ldict is borowed */ + Py_DECREF(ldict); /* now ldict is borrowed */ if (i < 0) return NULL; } -- cgit v0.12