From: Georg Brandl Date: Wed, 8 Mar 2006 12:24:33 +0000 (+0000) Subject: typo X-Git-Tag: v2.5a0~320 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f3c4ad14104ad45bd53df7b7e63cfc889efc3c05;p=thirdparty%2FPython%2Fcpython.git typo --- diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c index b0f77008df47..f15cacb50eb6 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; }