summaryrefslogtreecommitdiff
path: root/Modules/mmapmodule.c
Commit message (Expand)AuthorAgeFilesLines
...
* Fix new compiler warnings. Also boost "start" from (C) int to long andTim Peters2001-05-141-5/+5
* Fix the .find() method for memory maps.Greg Stein2001-05-141-3/+12
* Minor fiddling related toTim Peters2001-05-091-5/+2
* SF but #417587: compiler warnings compiling 2.1.Tim Peters2001-04-211-1/+1
* SF bug 128713: type(mmap_object) blew up on Linux.Tim Peters2001-01-141-3/+4
* Part of SF patch #102409 by jlt63 to support building these modulesGuido van Rossum2001-01-101-7/+1
* Windows mmap should (as the docs probably <wink> say) create a mappingTim Peters2001-01-101-2/+2
* my_getpagesize(): New function; returns the size of a page of memory.Fred Drake2000-10-011-12/+18
* For the benefit of SunOS 4.1.4, define MS_SYNC as 0 when it'sGuido van Rossum2000-09-251-0/+6
* More Windows changes.Mark Hammond2000-07-301-24/+38
* Fixes for Windows (but also tested on Linux). Test suite now completes, and ...Mark Hammond2000-07-301-6/+46
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* - added (long) casts to a couple of Py_BuildValue calls,Fredrik Lundh2000-07-091-7/+7
* -- ANSI-fying, namesFredrik Lundh2000-07-081-82/+61
* Remove definition of _GNU_SOURCE, since Python.h now does it for usAndrew M. Kuchling2000-07-051-5/+0
* clean up warnings in Win32 build of mmapmodule.cGuido van Rossum2000-07-011-6/+6
* Patch from Lorenzo M. Catucci:Andrew M. Kuchling2000-06-181-0/+5
* Support resizing the mapping depending on whether HAVE_MREMAP is definedAndrew M. Kuchling2000-06-181-4/+6
* Patch from Trent Mick:Andrew M. Kuchling2000-06-181-34/+105
* Removed MS_INVALIDATE flagsAndrew M. Kuchling2000-06-181-2/+2
* Fix the size() method to return the size of the file on Unix, not theAndrew M. Kuchling2000-06-171-3/+12
* Use PyArg_ParseTuple and specify the method names, following a suggestionAndrew M. Kuchling2000-06-031-5/+5
* Add missing PyArg_NoArgs() calls to methods that didn't take argumentsAndrew M. Kuchling2000-06-031-8/+16
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-3/+3
* Correct fix by Mark Favas for the cast problems.Guido van Rossum2000-04-101-4/+5
* I've had complaints about the comparison "where >= 0" before -- onGuido van Rossum2000-04-101-1/+1
* Mark Hammond <mhammond@skippinet.com.au>:Fred Drake2000-04-051-6/+2
* Patch from Hrvoje Niksic <hniksic@iskon.hr>:Fred Drake2000-04-041-8/+8
* Removed three unused variables from the Windows code.Guido van Rossum2000-03-311-3/+0
* Hacked for Win32 by Mark Hammond.Guido van Rossum2000-03-311-542/+569
* Added mmap module -- map a view of a file into memory on Win32 and Unix.Andrew M. Kuchling2000-03-301-0/+848