[Python-checkins] CVS: python/dist/src/Modules mmapmodule.c,2.2,2.3

Guido van Rossum python-dev@python.org
Fri, 31 Mar 2000 10:04:31 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/home/guido/hp/mal/py-patched/Modules

Modified Files:
	mmapmodule.c 
Log Message:
Removed three unused variables from the Windows code.


Index: mmapmodule.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Modules/mmapmodule.c,v
retrieving revision 2.2
retrieving revision 2.3
diff -C2 -r2.2 -r2.3
*** mmapmodule.c	2000/03/31 01:17:07	2.2
--- mmapmodule.c	2000/03/31 15:04:26	2.3
***************
*** 2,6 ****
   /  Author: Sam Rushing <rushing@nightmare.com>
   /  Hacked for Unix by A.M. Kuchling <amk1@bigfoot.com> 
!  /  $Id: mmapmodule.c,v 2.2 2000/03/31 01:17:07 guido Exp $
  
   / mmapmodule.cpp -- map a view of a file into memory
--- 2,6 ----
   /  Author: Sam Rushing <rushing@nightmare.com>
   /  Hacked for Unix by A.M. Kuchling <amk1@bigfoot.com> 
!  /  $Id: mmapmodule.c,v 2.3 2000/03/31 15:04:26 guido Exp $
  
   / mmapmodule.cpp -- map a view of a file into memory
***************
*** 729,734 ****
  	mmap_object * m_obj;
  	unsigned long map_size;
- 	char * filename;
- 	int namelen;
  	char * tagname = "";
  
--- 729,732 ----
***************
*** 736,740 ****
  	int fileno;
  	HFILE fh = 0;
- 	OFSTRUCT file_info;
  
  	/* Patch the object type */
--- 734,737 ----