summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-09-11 23:18:51 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-09-11 23:18:51 (GMT)
commit9a9471ca1cf044ed7e466cee9a84401824201dd7 (patch)
treeeaef62480a45bd1c307233e6770e0c42e22b7a16
parent69c2de3ad69219d60c53827670856deee6f4241c (diff)
downloadcpython-9a9471ca1cf044ed7e466cee9a84401824201dd7.zip
cpython-9a9471ca1cf044ed7e466cee9a84401824201dd7.tar.gz
cpython-9a9471ca1cf044ed7e466cee9a84401824201dd7.tar.bz2
Add info about Windows filesystem limits.
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ecc4588..b282559 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -199,7 +199,11 @@ Windows
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).
+ partitions). Windows filesystem limits: FAT has a 2GB (gigabyte)
+ filesize limit, and large file support makes no difference there.
+ FAT32's limit is 4GB, and files >= 2GB are easier to use from Python now.
+ NTFS has no practical limit on file size, and files of any size can be
+ used from Python now.
- The w9xpopen hack is now used on Windows NT and 2000 too when COMPSPEC
points to command.com (patch from Brian Quinlan).