Removed three unused variables from the Windows code.

This commit is contained in:
Guido van Rossum 2000-03-31 15:04:26 +00:00
parent e56793557c
commit 325942adb4
1 changed files with 0 additions and 3 deletions

View 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;