[issue2644] errors from msync ignored in mmap_object_dealloc

2011-01-17 Thread Brian Curtin
Brian Curtin added the comment: That was changed in r84950 from #2643. -- resolution: -> out of date stage: unit test needed -> committed/rejected status: open -> closed ___ Python tracker

[issue2644] errors from msync ignored in mmap_object_dealloc

2011-01-17 Thread Ross Lagerwall
Ross Lagerwall added the comment: I think this can be closed. msync() is only called in mmap.flush() and it is checked for an error. -- nosy: +rosslagerwall ___ Python tracker _

[issue2644] errors from msync ignored in mmap_object_dealloc

2010-01-11 Thread Ralf Schmitt
Ralf Schmitt added the comment: No, I don't know how to provoke such an error other than passing illegal parameters..(or munmap'ing the mmap'ed area). -- ___ Python tracker ___

[issue2644] errors from msync ignored in mmap_object_dealloc

2010-01-10 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue2644] errors from msync ignored in mmap_object_dealloc

2010-01-10 Thread Brian Curtin
Brian Curtin added the comment: Do you have a test case to reproduce the errors? I see that we call msync followed by munmap, neither one checked. -- nosy: +brian.curtin stage: -> test needed ___ Python tracker _

[issue2644] errors from msync ignored in mmap_object_dealloc

2008-04-16 Thread Ralf Schmitt
New submission from Ralf Schmitt <[EMAIL PROTECTED]>: mmapmodule.c's mmap_object_dealloc calls msync without checking for an error. -- messages: 65553 nosy: schmir severity: normal status: open title: errors from msync ignored in mmap_object_dealloc type: behavior versions: Python 2.6 _