[issue12882] mmap crash on Windows

2012-06-19 Thread Richard Oudkerk
Changes by Richard Oudkerk shibt...@gmail.com: -- status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12882 ___ ___

[issue12882] mmap crash on Windows

2012-05-25 Thread Richard Oudkerk
Richard Oudkerk shibt...@gmail.com added the comment: Without more information I will close this. -- resolution: - invalid stage: - committed/rejected status: open - pending ___ Python tracker rep...@bugs.python.org

[issue12882] mmap crash on Windows

2011-09-02 Thread sbt
sbt shibt...@gmail.com 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(Certain File,r+) size = os.path.getsize(Certain File)) data = mmap.mmap(f.fileno(), size)

[issue12882] mmap crash on Windows

2011-09-02 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12882 ___ ___

[issue12882] mmap crash on Windows

2011-09-02 Thread VUIUI
VUIUI nguyen.vu.linh...@gmail.com added the comment: Botay -- nosy: +VUIUI ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12882 ___ ___

[issue12882] mmap crash on Windows

2011-09-02 Thread Charles-François Natali
Changes by Charles-François Natali neolo...@free.fr: -- Removed message: http://bugs.python.org/msg143397 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12882 ___

[issue12882] mmap crash on Windows

2011-09-02 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Is it a crash, or do you get a exception with a nice message? -- nosy: +amaury.forgeotdarc ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12882

[issue12882] mmap crash on Windows

2011-09-01 Thread Abhijit Bhattacharjee
New submission from Abhijit Bhattacharjee itabhij...@gmail.com: The following Code causes Python to crash import os import mmap data = mmap.mmap(open(Certain File,r+).fileno(),os.path.getsize(Certain File)) assuming Certain File is present in the current working directory --