[Python-checkins] r42914 - python/trunk/Modules/threadmodule.c

georg.brandl python-checkins at python.org
Wed Mar 8 13:24:34 CET 2006


Author: georg.brandl
Date: Wed Mar  8 13:24:33 2006
New Revision: 42914

Modified:
   python/trunk/Modules/threadmodule.c
Log:
typo



Modified: python/trunk/Modules/threadmodule.c
==============================================================================
--- python/trunk/Modules/threadmodule.c	(original)
+++ python/trunk/Modules/threadmodule.c	Wed Mar  8 13:24:33 2006
@@ -309,7 +309,7 @@
 			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;
 		}


More information about the Python-checkins mailing list