From 325942adb455885cd5342ac19641091c438a8ad4 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 31 Mar 2000 15:04:26 +0000 Subject: [PATCH] Removed three unused variables from the Windows code. --- Modules/mmapmodule.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 66f0e481690..bf40274e825 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;