summaryrefslogtreecommitdiffstats
path: root/Python/pystate.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-09-23 04:11:38 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-09-23 04:11:38 (GMT)
commitd3f91908dd2c2ab79d16bfe235da34f2fc19c114 (patch)
tree6b34bb15ce35f8c3874df6480677701e792f41a5 /Python/pystate.c
parent62e955ad134b1b4cdeb5875e8672ae16635a9f4b (diff)
downloadcpython-d3f91908dd2c2ab79d16bfe235da34f2fc19c114.zip
cpython-d3f91908dd2c2ab79d16bfe235da34f2fc19c114.tar.gz
cpython-d3f91908dd2c2ab79d16bfe235da34f2fc19c114.tar.bz2
Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if anyone cares.
Diffstat (limited to 'Python/pystate.c')
-rw-r--r--Python/pystate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c
index 639278f..cc25e3e 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