]> granicus.if.org Git - python/commitdiff
Removed three unused variables from the Windows code.
authorGuido van Rossum <guido@python.org>
Fri, 31 Mar 2000 15:04:26 +0000 (15:04 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 31 Mar 2000 15:04:26 +0000 (15:04 +0000)
Modules/mmapmodule.c

index 66f0e481690e39e667719039a0ed0044e3fd78c6..bf40274e825bfcb12670861ba572afd0c81dc271 100644 (file)
@@ -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;