summaryrefslogtreecommitdiff
path: root/Modules/md5module.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-07-17 16:49:03 +0000
committerTim Peters <tim.peters@gmail.com>2002-07-17 16:49:03 +0000
commit440f24741fa48d3d090590a27790198fec068b47 (patch)
treebac66066aa27504f4bcf7db2d6bd716253644283 /Modules/md5module.c
parent5b3a8a78ed7f7ae3f3a84ad1921ee7a59eb8b105 (diff)
downloadcpython-440f24741fa48d3d090590a27790198fec068b47.tar.gz
Removed more stray instances of statichere, but left _sre.c alone.
Diffstat (limited to 'Modules/md5module.c')
-rw-r--r--Modules/md5module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/md5module.c b/Modules/md5module.c
index b7f2c69eab..aa2bef8c4c 100644
--- a/Modules/md5module.c
+++ b/Modules/md5module.c
@@ -187,7 +187,7 @@ update() -- updates the current digest with an additional string\n\
digest() -- return the current digest value\n\
copy() -- return a copy of the current md5 object");
-statichere PyTypeObject MD5type = {
+static PyTypeObject MD5type = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"md5.md5", /*tp_name*/