diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-07-17 16:49:03 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-07-17 16:49:03 +0000 |
commit | 0c32279626d166fe0e09c571fcfc9af25508b1cd (patch) | |
tree | 7eda2c480fc9fed9890218ecc889cdf14c991869 /Modules/zlibmodule.c | |
parent | 50ceb68b4fa36ccda44b06c36bd375e197b2810a (diff) | |
download | cpython-git-0c32279626d166fe0e09c571fcfc9af25508b1cd.tar.gz |
Removed more stray instances of statichere, but left _sre.c alone.
Diffstat (limited to 'Modules/zlibmodule.c')
-rw-r--r-- | Modules/zlibmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index 2ee4996fdc..c0dbff6c50 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -785,7 +785,7 @@ static PyMethodDef zlib_methods[] = {NULL, NULL} }; -statichere PyTypeObject Comptype = { +static PyTypeObject Comptype = { PyObject_HEAD_INIT(0) 0, "zlib.Compress", @@ -802,7 +802,7 @@ statichere PyTypeObject Comptype = { 0, /*tp_as_mapping*/ }; -statichere PyTypeObject Decomptype = { +static PyTypeObject Decomptype = { PyObject_HEAD_INIT(0) 0, "zlib.Decompress", |