summaryrefslogtreecommitdiff
path: root/Modules/mmapmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 73677,73681 via svnmerge fromHirokazu Yamamoto2009-06-291-3/+13
* Merged revisions 73425 via svnmerge fromHirokazu Yamamoto2009-06-141-1/+2
* Merged revisions 70879 via svnmerge fromHirokazu Yamamoto2009-03-311-1/+1
* Merged revisions 70849 via svnmerge fromJesse Noller2009-03-311-1/+5
* Merged revisions 70800 via svnmerge fromHirokazu Yamamoto2009-03-311-4/+2
* Merged revisions 70189 via svnmerge fromHirokazu Yamamoto2009-03-051-6/+13
* Merged revisions 70056 via svnmerge fromHirokazu Yamamoto2009-02-281-1/+1
* Merged revisions 70052 via svnmerge fromHirokazu Yamamoto2009-02-281-4/+11
* Merged revisions 69714,69718 via svnmerge fromHirokazu Yamamoto2009-02-181-4/+4
* Fix strange character in the docstring.Thomas Heller2008-08-191-1/+1
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-311-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-18/+18
* Renamed PyString to PyBytesChristian Heimes2008-05-261-18/+18
* 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