summaryrefslogtreecommitdiffstats
path: root/Modules/mmapmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue 2112. mmap does not raises EnvironmentError no more, butFacundo Batista2008-02-171-1/+4
* Bug #2111: mmap segfaults when trying to write a block opened with PROT_READChristian Heimes2008-02-151-0/+4
* Use int for the sign rather than a char. char can be signed or unsigned.Neal Norwitz2008-01-271-1/+1
* Mostly reformat. Also set an error and return NULL if neither MS_WINDOWSNeal Norwitz2008-01-271-15/+13
* Cleanup the code a bit. test_rfind is failing on PPC and PPC64 buildbots,Neal Norwitz2008-01-261-7/+7
* Use Py_TYPE() instead of ->ob_typeChristian Heimes2008-01-231-1/+1
* Fix for #1087741 patch.Georg Brandl2008-01-221-1/+1
* #1087741: make mmap.mmap the type of mmap objects, not aGeorg Brandl2008-01-211-20/+27
* Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute a...Georg Brandl2008-01-201-10/+36
* Patch #976880: add mmap .rfind() method, and 'end' paramter to .find().Andrew M. Kuchling2008-01-191-5/+34
* Check for fd of -1 to save fsync() and fstat() callAndrew M. Kuchling2008-01-101-2/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* Fix some compiler warnings for signed comparisons on Unix and Windows.Neal Norwitz2007-10-311-2/+2
* Add phuang patch from Issue 708374 which adds offset parameter to mmap module.Travis E. Oliphant2007-10-231-34/+75
* Improve extended slicing support in builtin types and classes. Specifically:Thomas Wouters2007-08-281-1/+151
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-3/+2
* Alexander Belopolsky pointed out that pos is a size_tNeal Norwitz2006-08-221-1/+1
* Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-devNeal Norwitz2006-08-211-1/+1
* Get rid of compiler warningNeal Norwitz2006-08-131-2/+2
* Check return result of PyModule_GetDict().Neal Norwitz2006-08-131-22/+24
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-121-22/+8
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-101-0/+3
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-20/+10
* Correct some value converting strangenesses.Georg Brandl2006-05-291-3/+3
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-17/+8
* More unconsting.Martin v. Löwis2006-02-271-2/+2
* Fix typo.Martin v. Löwis2006-02-181-1/+1
* Fix size computation on Win64.Martin v. Löwis2006-02-181-12/+46
* Fix typo.Thomas Wouters2006-02-171-1/+1
* Remove size restrictions.Martin v. Löwis2006-02-171-29/+19
* mmap_flush_method(): Squash compiler warning aboutTim Peters2006-02-171-2/+2
* Remove space between function name and left parenTim Peters2006-02-171-94/+92
* Removed pointless parens around `return` expressions;Tim Peters2006-02-161-22/+20
* Trimmed trailing whitespace.Tim Peters2006-02-161-41/+41
* new_mmap_object(), Windows flavor.Tim Peters2006-02-161-2/+16
* More Py_ssize_t format characters.Thomas Wouters2006-02-161-1/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-8/+8
* Update comment and make accurate.Neal Norwitz2006-02-161-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-24/+24
* Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the sameNeal Norwitz2006-02-051-10/+49
* Whitespace normalizationNeal Norwitz2006-02-051-2/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Fix SF bug #1402308, segfault when using mmap(-1, ...)Neal Norwitz2006-01-111-0/+1
* SF Patch #1365916, mmap fails on AMD64Neal Norwitz2005-12-181-12/+12
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-7/+8
* Cleanup the previous checkin.Neal Norwitz2005-11-021-1/+4
* Bug #1344508, Fix UNIX mmap leaking file descriptors. Will backport.Neal Norwitz2005-11-021-0/+1
* C89 compliance.Armin Rigo2005-09-201-2/+2
* bug [ 728515 ] mmap's resize method resizes the file in win32 but not unixGeorg Brandl2005-08-241-1/+11
* Patches #749830, #1144555: allow UNIX mmap size to default to currentMartin v. Löwis2005-03-031-5/+8