mercurial/win32.py
changeset 8329 79a12651d46b
parent 8328 91f1fe78454c
child 8421 b6d0fa8c7685
--- a/mercurial/win32.py	Thu Mar 26 13:13:48 2009 -0700
+++ b/mercurial/win32.py	Thu Mar 26 13:14:35 2009 -0700
@@ -270,8 +270,9 @@
     with win32file.FILE_SHARE_DELETE. this flag does not exist on
     windows < nt, so do not use this class there.'''
 
-    # tried to use win32file._open_osfhandle to pass fd to os.fdopen,
-    # but does not work at all. wrap win32 file api instead.
+    # ideally, we could use win32file._open_osfhandle and avoid this
+    # class entirely, but we would need the win32 _fdopen function,
+    # which is not exported by the win32file module.
 
     def __init__(self, name, mode='rb'):
         self.closed = False