diff options
| author | Georg Brandl <georg@python.org> | 2006-03-08 12:24:33 (GMT) |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2006-03-08 12:24:33 (GMT) |
| commit | f3c4ad14104ad45bd53df7b7e63cfc889efc3c05 (patch) | |
| tree | ff0a1c58629af744425a47cb0a046170f0ef6361 /Modules/threadmodule.c | |
| parent | 26fd2e1dcc6f07f6c58127a790312850849c1c60 (diff) | |
| download | cpython-f3c4ad14104ad45bd53df7b7e63cfc889efc3c05.zip cpython-f3c4ad14104ad45bd53df7b7e63cfc889efc3c05.tar.gz cpython-f3c4ad14104ad45bd53df7b7e63cfc889efc3c05.tar.bz2 | |
typo
Diffstat (limited to 'Modules/threadmodule.c')
| -rw-r--r-- | Modules/threadmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
