| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix strange character in the docstring. | Thomas Heller | 2008-08-19 | 1 | -1/+1 |
|
|
| * | Security patches from Apple: prevent int overflow when allocating memory | Neal Norwitz | 2008-07-31 | 1 | -1/+1 |
|
|
| * | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -18/+18 |
|
|
| * | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -18/+18 |
|
|
| * | Issue 2112. mmap does not raises EnvironmentError no more, but | Facundo Batista | 2008-02-17 | 1 | -1/+4 |
|
|
| * | Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ | Christian Heimes | 2008-02-15 | 1 | -0/+4 |
|
|
| * | Use int for the sign rather than a char. char can be signed or unsigned. | Neal Norwitz | 2008-01-27 | 1 | -1/+1 |
|
|
| * | Mostly reformat. Also set an error and return NULL if neither MS_WINDOWS | Neal Norwitz | 2008-01-27 | 1 | -15/+13 |
|
|
| * | Cleanup the code a bit. test_rfind is failing on PPC and PPC64 buildbots, | Neal Norwitz | 2008-01-26 | 1 | -7/+7 |
|
|
| * | Use Py_TYPE() instead of ->ob_type | Christian Heimes | 2008-01-23 | 1 | -1/+1 |
|
|
| * | Fix for #1087741 patch. | Georg Brandl | 2008-01-22 | 1 | -1/+1 |
|
|
| * | #1087741: make mmap.mmap the type of mmap objects, not a | Georg Brandl | 2008-01-21 | 1 | -20/+27 |
|
|
| * | Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute a... | Georg Brandl | 2008-01-20 | 1 | -10/+36 |
|
|
| * | Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). | Andrew M. Kuchling | 2008-01-19 | 1 | -5/+34 |
|
|
| * | Check for fd of -1 to save fsync() and fstat() call | Andrew M. Kuchling | 2008-01-10 | 1 | -2/+4 |
|
|
| * | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
| * | Fix some compiler warnings for signed comparisons on Unix and Windows. | Neal Norwitz | 2007-10-31 | 1 | -2/+2 |
|
|
| * | Add phuang patch from Issue 708374 which adds offset parameter to mmap module. | Travis E. Oliphant | 2007-10-23 | 1 | -34/+75 |
|
|
| * | Improve extended slicing support in builtin types and classes. Specifically: | Thomas Wouters | 2007-08-28 | 1 | -1/+151 |
|
|
| * | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -3/+2 |
|
|
| * | Alexander Belopolsky pointed out that pos is a size_t | Neal Norwitz | 2006-08-22 | 1 | -1/+1 |
|
|
| * | Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev | Neal Norwitz | 2006-08-21 | 1 | -1/+1 |
|
|
| * | Get rid of compiler warning | Neal Norwitz | 2006-08-13 | 1 | -2/+2 |
|
|
| * | Check return result of PyModule_GetDict(). | Neal Norwitz | 2006-08-13 | 1 | -22/+24 |
|
|
| * | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -22/+8 |
|
|
| * | Patch #1495999: Part two of Windows CE changes. | Martin v. Löwis | 2006-06-10 | 1 | -0/+3 |
|
|
| * | Make use of METH_O and METH_NOARGS where possible. | Georg Brandl | 2006-05-29 | 1 | -20/+10 |
|
|
| * | Correct some value converting strangenesses. | Georg Brandl | 2006-05-29 | 1 | -3/+3 |
|
|
| * | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -17/+8 |
|
|
| * | More unconsting. | Martin v. Löwis | 2006-02-27 | 1 | -2/+2 |
|
|
| * | Fix typo. | Martin v. Löwis | 2006-02-18 | 1 | -1/+1 |
|
|
| * | Fix size computation on Win64. | Martin v. Löwis | 2006-02-18 | 1 | -12/+46 |
|
|
| * | Fix typo. | Thomas Wouters | 2006-02-17 | 1 | -1/+1 |
|
|
| * | Remove size restrictions. | Martin v. Löwis | 2006-02-17 | 1 | -29/+19 |
|
|
| * | mmap_flush_method(): Squash compiler warning about | Tim Peters | 2006-02-17 | 1 | -2/+2 |
|
|
| * | Remove space between function name and left paren | Tim Peters | 2006-02-17 | 1 | -94/+92 |
|
|
| * | Removed pointless parens around `return` expressions; | Tim Peters | 2006-02-16 | 1 | -22/+20 |
|
|
| * | Trimmed trailing whitespace. | Tim Peters | 2006-02-16 | 1 | -41/+41 |
|
|
| * | new_mmap_object(), Windows flavor. | Tim Peters | 2006-02-16 | 1 | -2/+16 |
|
|
| * | More Py_ssize_t format characters. | Thomas Wouters | 2006-02-16 | 1 | -1/+1 |
|
|
| * | Use Py_ssize_t for counts and sizes. | Martin v. Löwis | 2006-02-16 | 1 | -8/+8 |
|
|
| * | Update comment and make accurate. | Neal Norwitz | 2006-02-16 | 1 | -1/+1 |
|
|
| * | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -24/+24 |
|
|
| * | Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same | Neal Norwitz | 2006-02-05 | 1 | -10/+49 |
|
|
| * | Whitespace normalization | Neal Norwitz | 2006-02-05 | 1 | -2/+2 |
|
|
| * | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
|
|
| * | Fix SF bug #1402308, segfault when using mmap(-1, ...) | Neal Norwitz | 2006-01-11 | 1 | -0/+1 |
|
|
| * | SF Patch #1365916, mmap fails on AMD64 | Neal Norwitz | 2005-12-18 | 1 | -12/+12 |
|
|
| * | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -7/+8 |
|
|
| * | Cleanup the previous checkin. | Neal Norwitz | 2005-11-02 | 1 | -1/+4 |
|
|