diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-07-17 16:49:03 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-07-17 16:49:03 (GMT) |
commit | 0c32279626d166fe0e09c571fcfc9af25508b1cd (patch) | |
tree | 7eda2c480fc9fed9890218ecc889cdf14c991869 /Modules/selectmodule.c | |
parent | 50ceb68b4fa36ccda44b06c36bd375e197b2810a (diff) | |
download | cpython-0c32279626d166fe0e09c571fcfc9af25508b1cd.zip cpython-0c32279626d166fe0e09c571fcfc9af25508b1cd.tar.gz cpython-0c32279626d166fe0e09c571fcfc9af25508b1cd.tar.bz2 |
Removed more stray instances of statichere, but left _sre.c alone.
Diffstat (limited to 'Modules/selectmodule.c')
-rw-r--r-- | Modules/selectmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index 5d9ab35..8fdc97d 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) |