Commit 325942ad authored by Guido van Rossum's avatar Guido van Rossum

Removed three unused variables from the Windows code.

parent e5679355
...@@ -728,14 +728,11 @@ new_mmap_object (PyObject * self, PyObject * args) ...@@ -728,14 +728,11 @@ new_mmap_object (PyObject * self, PyObject * args)
{ {
mmap_object * m_obj; mmap_object * m_obj;
unsigned long map_size; unsigned long map_size;
char * filename;
int namelen;
char * tagname = ""; char * tagname = "";
DWORD dwErr = 0; DWORD dwErr = 0;
int fileno; int fileno;
HFILE fh = 0; HFILE fh = 0;
OFSTRUCT file_info;
/* Patch the object type */ /* Patch the object type */
mmap_object_type.ob_type = &PyType_Type; mmap_object_type.ob_type = &PyType_Type;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment