summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-31 15:04:26 (GMT)
committerGuido van Rossum <guido@python.org>2000-03-31 15:04:26 (GMT)
commit325942adb455885cd5342ac19641091c438a8ad4 (patch)
tree4778109c45d302ab44582d837e4f36435d7a4c21 /Modules
parente56793557c201c830a6eb540977e277f0da63c4e (diff)
downloadcpython-325942adb455885cd5342ac19641091c438a8ad4.zip
cpython-325942adb455885cd5342ac19641091c438a8ad4.tar.gz
cpython-325942adb455885cd5342ac19641091c438a8ad4.tar.bz2
Removed three unused variables from the Windows code.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/mmapmodule.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c
index 66f0e48..bf40274 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;