From: Guido van Rossum Date: Fri, 31 Mar 2000 15:04:26 +0000 (+0000) Subject: Removed three unused variables from the Windows code. X-Git-Tag: v1.6a1~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=325942adb455885cd5342ac19641091c438a8ad4;p=thirdparty%2FPython%2Fcpython.git Removed three unused variables from the Windows code. --- diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 66f0e481690e..bf40274e825b 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;