[Python-checkins] CVS: python/dist/src/Misc NEWS,1.232,1.233

Tim Peters tim_one@users.sourceforge.net
Wed, 05 Sep 2001 17:32:17 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv19489/python/Misc

Modified Files:
	NEWS 
Log Message:
Enable large file support on Win32 systems.
Curious:  the MS docs say stati64 etc are supported even on Win95, but
Win95 doesn't support a filesystem that allows partitions > 2 Gb.

test_largefile:  This was opening its test file in text mode.  I have no
idea how that worked under Win64, but it sure needs binary mode on Win98.
BTW, on Win98 test_largefile runs quickly (under a second).


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.232
retrieving revision 1.233
diff -C2 -d -r1.232 -r1.233
*** NEWS	2001/09/05 22:36:56	1.232
--- NEWS	2001/09/06 00:32:15	1.233
***************
*** 156,159 ****
--- 156,165 ----
  Windows
  
+ - Large file support is now enabled on Win32 platforms as well as on
+   Win64.  This means that, for example, you can use f.tell() and f.seek()
+   to manipulate files larger than 2 gigabytes (provided you have enough
+   disk space, and are using a Windows filesystem that supports large
+   partitions).
+ 
  - The w9xpopen hack is now used on Windows NT and 2000 too when COMPSPEC
    points to command.com (patch from Brian Quinlan).