diff options
author | Guido van Rossum <guido@python.org> | 2000-03-31 15:04:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-31 15:04:26 (GMT) |
commit | 325942adb455885cd5342ac19641091c438a8ad4 (patch) | |
tree | 4778109c45d302ab44582d837e4f36435d7a4c21 /Modules | |
parent | e56793557c201c830a6eb540977e277f0da63c4e (diff) | |
download | cpython-325942adb455885cd5342ac19641091c438a8ad4.zip cpython-325942adb455885cd5342ac19641091c438a8ad4.tar.gz cpython-325942adb455885cd5342ac19641091c438a8ad4.tar.bz2 |
Removed three unused variables from the Windows code.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/mmapmodule.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 66f0e48..bf40274 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -728,14 +728,11 @@ new_mmap_object (PyObject * self, PyObject * args) { mmap_object * m_obj; unsigned long map_size; - char * filename; - int namelen; char * tagname = ""; DWORD dwErr = 0; int fileno; HFILE fh = 0; - OFSTRUCT file_info; /* Patch the object type */ mmap_object_type.ob_type = &PyType_Type; |