[Python-checkins] CVS: python/dist/src/Modules mmapmodule.c,NONE,2.1 Setup.in,1.91,1.92

Andrew M. Kuchling python-dev@python.org
Thu, 30 Mar 2000 16:14:34 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Modules
In directory amarok:/home/akuchlin/src/Python-1.5/Modules

Modified Files:
	Setup.in 
Added Files:
	mmapmodule.c 
Log Message:
Added mmap module -- map a view of a file into memory on Win32 and Unix.
(Needs testing on Win32.)



Index: Setup.in
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Modules/Setup.in,v
retrieving revision 1.91
retrieving revision 1.92
diff -C2 -r1.91 -r1.92
*** Setup.in	2000/03/10 23:12:08	1.91
--- Setup.in	2000/03/30 21:14:30	1.92
***************
*** 151,154 ****
--- 151,155 ----
  grp grpmodule.c		# grp(3)
  errno errnomodule.c	# posix (UNIX) errno values
+ mmap mmapmodule.c       # Memory-mapped files (also works on Win32)
  select selectmodule.c	# select(2); not on ancient System V
  socket socketmodule.c	# socket(2); not on ancient System V
***************
*** 418,422 ****
  # See http://www.cdrom.com/pub/infozip/zlib/
  #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
- 
  
  # Example -- included for reference only:
--- 419,422 ----