[issue12882] mmap crash on Windows

2012-06-19 Thread Richard Oudkerk
Changes by Richard Oudkerk : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue12882] mmap crash on Windows

2012-05-25 Thread Richard Oudkerk
Richard Oudkerk added the comment: Without more information I will close this. -- resolution: -> invalid stage: -> committed/rejected status: open -> pending ___ Python tracker __

[issue12882] mmap crash on Windows

2011-09-02 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Is it a crash, or do you get a exception with a nice message? -- nosy: +amaury.forgeotdarc ___ Python tracker ___ ___

[issue12882] mmap crash on Windows

2011-09-02 Thread Charles-François Natali
Changes by Charles-François Natali : -- Removed message: http://bugs.python.org/msg143397 ___ Python tracker ___ ___ Python-bugs-list

[issue12882] mmap crash on Windows

2011-09-02 Thread VUIUI
VUIUI added the comment: Botay -- nosy: +VUIUI ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue12882] mmap crash on Windows

2011-09-02 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue12882] mmap crash on Windows

2011-09-02 Thread sbt
sbt added the comment: You are not doing anything to stop the file object being garbage collected (and therefore closed) before the mmap is created. Try import os import mmap f = open(,"r+") size = os.path.getsize()) data = mmap.mmap(f.fileno(), size) -- nosy: +sbt _

[issue12882] mmap crash on Windows

2011-09-01 Thread Abhijit Bhattacharjee
New submission from Abhijit Bhattacharjee : The following Code causes Python to crash import os import mmap data = mmap.mmap(open(,"r+").fileno(),os.path.getsize()) assuming is present in the current working directory -- components: Interpreter Core, Windows messages: 143378 nosy: itab