diff options
author | Guido van Rossum <guido@python.org> | 1996-03-07 16:16:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-03-07 16:16:54 (GMT) |
commit | a0e2422615c1826fdbe963f4116eb6b3edccb951 (patch) | |
tree | b1b4f848c8fa01c2d157aa90f22f704092eca4ba /Tools/modulator/Templates | |
parent | 2429c722d7613336a6a71dc8bd6e07b50024c8aa (diff) | |
download | cpython-a0e2422615c1826fdbe963f4116eb6b3edccb951.zip cpython-a0e2422615c1826fdbe963f4116eb6b3edccb951.tar.gz cpython-a0e2422615c1826fdbe963f4116eb6b3edccb951.tar.bz2 |
A few missing casts (Richard Neitzel).
Don't append Unix paths on a Mac (Jack Jansen).
Diffstat (limited to 'Tools/modulator/Templates')
-rw-r--r-- | Tools/modulator/Templates/module_tail | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/modulator/Templates/module_tail b/Tools/modulator/Templates/module_tail index 6ee7645..59cc50b 100644 --- a/Tools/modulator/Templates/module_tail +++ b/Tools/modulator/Templates/module_tail @@ -3,7 +3,7 @@ static struct PyMethodDef $abbrev$_methods[] = { $methodlist$ - {NULL, NULL} /* sentinel */ + {NULL, (PyCFunction)NULL, 0, NULL} /* sentinel */ }; |