summaryrefslogtreecommitdiff
path: root/Lib/test/test_mmap.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-738...Serhiy Storchaka2018-06-051-0/+7
* skip test on windowsBenjamin Peterson2016-10-051-0/+1
* fix bug in 48797808a302Benjamin Peterson2016-10-051-1/+1
* skip test if resizing is not supportedBenjamin Peterson2016-10-051-2/+5
* mmap: do all internal arithmetic with Py_ssize_t while being very careful abo...Benjamin Peterson2016-10-051-0/+10
* Fixed typo.Serhiy Storchaka2014-08-191-2/+2
* Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows.Serhiy Storchaka2014-08-191-1/+10
* Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-031-75/+73
* Silence deprecation warning in test_mmap for ValueError.message.Terry Jan Reedy2013-08-311-8/+4
* Issue #16743: Fix mmap overflow check on 32 bit WindowsRichard Oudkerk2013-02-131-0/+7
* #15676: mmap: add empty file check prior to offset check <- Previous patch wa...Jesus Cea2012-09-101-12/+9
* Closes #15676: mmap: add empty file check prior to offset checkJesus Cea2012-09-101-0/+16
* Fix potential resource leak in test_mmap.Nadeem Vawda2011-05-071-0/+1
* Issue #11277: Fix tests - crash will not trigger if the file is closed and re...Nadeem Vawda2011-05-071-14/+12
* Issue #11277: Add tests for mmap crash when using large sparse files on OS X.Nadeem Vawda2011-05-071-26/+34
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* Issue #11391: Writing to a mmap object created withAntoine Pitrou2011-03-061-0/+8
* Merged revisions 88486 via svnmerge fromAntoine Pitrou2011-02-211-3/+58
* Merged revisions 88131 via svnmerge fromAntoine Pitrou2011-01-201-0/+13
* Merged revisions 88036 via svnmerge fromAntoine Pitrou2011-01-151-5/+9
* Merged revisions 88022 via svnmerge fromAntoine Pitrou2011-01-151-0/+13
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-15/+15
* Merged revisions 83407 via svnmerge fromBrian Curtin2010-08-011-1/+11
* use assert[Not]In where appropriateEzio Melotti2010-01-231-1/+1
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-2/+2
* No behavior change.Hirokazu Yamamoto2009-04-041-2/+2
* bounds check arguments to mmap.move(). All of them. Really.Jack Diederich2009-04-011-7/+14
* Issue #5387: Fixed mmap.move crash by integer overflow. (take2)Hirokazu Yamamoto2009-03-311-4/+16
* Issue #5387: Fixed mmap.move crash by integer overflow.Hirokazu Yamamoto2009-03-311-0/+17
* Add import_function method to test.test_support, and modify a number ofR. David Murray2009-03-301-2/+3
* mmap.resize for anonymous map is not working yet, so changed to real file map...Hirokazu Yamamoto2009-03-051-15/+5
* Issue #5385: Fixed mmap crash after resize failure on windows.Hirokazu Yamamoto2009-03-051-1/+33
* Issue #1733986: Fixed mmap crash in accessing elements of second map objectHirokazu Yamamoto2009-02-281-0/+28
* Issue #5386: mmap.write_byte didn't check map size, so it could cause bufferHirokazu Yamamoto2009-02-281-0/+32
* Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0,Hirokazu Yamamoto2009-02-171-0/+21
* Issue #5292: Fixed mmap crash on its boundary access m[len(m)].Hirokazu Yamamoto2009-02-171-0/+4
* Be sure to close the file. 2 places were deleting the file, so it was probablyNeal Norwitz2008-04-011-1/+3
* Issue 2112. mmap does not raises EnvironmentError no more, butFacundo Batista2008-02-171-0/+5
* mmap.PROT_READ does not exists on win32;Amaury Forgeot d'Arc2008-02-161-0/+2
* Bug #2111: mmap segfaults when trying to write a block opened with PROT_READChristian Heimes2008-02-151-0/+7
* Fix for #1087741 patch.Georg Brandl2008-01-221-0/+7
* Patch #976880: add mmap .rfind() method, and 'end' paramter to .find().Andrew M. Kuchling2008-01-191-0/+36
* Add phuang patch from Issue 708374 which adds offset parameter to mmap module.Travis E. Oliphant2007-10-231-0/+44
* Improve extended slicing support in builtin types and classes. Specifically:Thomas Wouters2007-08-281-0/+34
* Whitespace normalization.Tim Peters2006-11-031-1/+1
* Convert test_mmap to unittest.Georg Brandl2006-10-291-238/+156
* Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the sameNeal Norwitz2006-02-051-2/+12
* Fix SF bug #1402308, segfault when using mmap(-1, ...)Neal Norwitz2006-01-111-0/+8
* SF Patch #1365916, mmap fails on AMD64Neal Norwitz2005-12-181-0/+16
* Whitespace normalization (via reindent.py).Tim Peters2005-08-261-1/+1