[issue6915] os.listdir inconsistenly releases the GIL on win32

2010-08-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: The original patch also modifies attributes_from_dir() and attributes_from_dir_w(), but these are called with the GIL released. Modified patch committed in r83921 (py3k), r83922 (3.1) and r83923 (2.7). Thank you! -- resolution: -> fixed stage: patch

[issue6915] os.listdir inconsistenly releases the GIL on win32

2010-08-02 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: loewis -> pitrou nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue6915] os.listdir inconsistenly releases the GIL on win32

2010-07-11 Thread Mark Lawrence
Changes by Mark Lawrence : -- components: +Library (Lib) -None stage: -> patch review versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ ___

[issue6915] os.listdir inconsistenly releases the GIL on win32

2009-09-17 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> loewis nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6915] os.listdir inconsistenly releases the GIL on win32

2009-09-14 Thread Ryan Kelly
New submission from Ryan Kelly : The win32 implementation of os.listdir() releases the GIL around calls to FindNextFile, but not around calls to FindFirstFile. Attached is a simple patch to consistently release the GIL around any such calls. -- components: None files: listdir_gil.patch