summaryrefslogtreecommitdiff
path: root/Modules/selectmodule.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/selectmodule.c
parent5b3a8a78ed7f7ae3f3a84ad1921ee7a59eb8b105 (diff)
downloadcpython-440f24741fa48d3d090590a27790198fec068b47.tar.gz
Removed more stray instances of statichere, but left _sre.c alone.
Diffstat (limited to 'Modules/selectmodule.c')
-rw-r--r--Modules/selectmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index 5d9ab35b54..8fdc97d1d7 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -559,7 +559,7 @@ poll_getattr(pollObject *self, char *name)
return Py_FindMethod(poll_methods, (PyObject *)self, name);
}
-statichere PyTypeObject poll_Type = {
+static PyTypeObject poll_Type = {
/* The ob_type field must be initialized in the module init function
* to be portable to Windows without using C++. */
PyObject_HEAD_INIT(NULL)