diff options
author | Georg Brandl <georg@python.org> | 2006-09-25 06:53:42 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-09-25 06:53:42 +0000 |
commit | b14b59fcf9325bc803763c4aad036cb12f9d7978 (patch) | |
tree | a88b449fb3efc4d79e7f093e2220e3efe3052c55 /Python | |
parent | edd81b2402ae7e3b1c4aa24f28f46567674d3a75 (diff) | |
download | cpython-git-b14b59fcf9325bc803763c4aad036cb12f9d7978.tar.gz |
Backport rev. 51987: superfluous semicola.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pystate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index 639278f690..cc25e3ed38 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -501,7 +501,7 @@ _PyGILState_Fini(void) { PyThread_delete_key(autoTLSkey); autoTLSkey = 0; - autoInterpreterState = NULL;; + autoInterpreterState = NULL; } /* When a thread state is created for a thread by some mechanism other than |