summaryrefslogtreecommitdiffstats
path: root/Modules/mmapmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Closes release blocker #3627.Neal Norwitz2008-08-241-1/+1
* Merged revisions 65780,65782,65785,65809,65812,65834,65846,65859,65861 via sv...Benjamin Peterson2008-08-191-1/+1
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-3/+3
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-6/+20
* Renamed PyString to PyBytesChristian Heimes2008-05-261-3/+3
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-5/+5
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-191-1/+4
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-0/+4
* Merged revisions 60284-60349 via svnmerge fromChristian Heimes2008-01-271-23/+21
* Merged revisions 60176-60209 via svnmerge fromChristian Heimes2008-01-231-1/+1
* Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge...Georg Brandl2008-01-211-20/+27
* Merged revisions 60143-60149 via svnmerge fromChristian Heimes2008-01-211-10/+36
* Merged revisions 60080-60089,60091-60093 via svnmerge fromGeorg Brandl2008-01-191-5/+34
* Merged revisions 59883-59920 via svnmerge fromChristian Heimes2008-01-111-2/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-10/+10
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-47/+48
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-36/+77
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-2/+2
* Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.Sean Reifscheider2007-09-171-7/+7
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-59/+2
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-2/+152
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-47/+26
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-121-2/+3
* Return bytes, not string from read(). Makes test_mmap.py pass.Guido van Rossum2007-07-261-1/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-3/+2
* SF patch# 1752647 by Joe Gregorio.Guido van Rossum2007-07-161-9/+9
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+1
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-42/+32
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-0/+3
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-4/+2
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-23/+13
* 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