diff options
author | Guido van Rossum <guido@python.org> | 2000-03-31 15:04:26 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-31 15:04:26 +0000 |
commit | e7833de92268aef8c632b28197a398e23b121e46 (patch) | |
tree | fd33f1c58feffdd65641661d8dd1d1765ebafee2 /Modules/mmapmodule.c | |
parent | afb691b716a81623ad6ed1f3e3dce7b9ce5cd136 (diff) | |
download | cpython-e7833de92268aef8c632b28197a398e23b121e46.tar.gz |
Removed three unused variables from the Windows code.
Diffstat (limited to 'Modules/mmapmodule.c')
-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 66f0e48169..bf40274e82 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; |