diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-08-18 23:52:09 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-08-18 23:52:09 (GMT) |
commit | 1a3abcb648565b1c521c41d49ecd7c93a45c6d97 (patch) | |
tree | 6fec86e244cd7944a53f1c99c4b829a5af733788 /Misc | |
parent | c58a3a10a91f0c0c2debc2c386bfeee8184e0f86 (diff) | |
download | cpython-1a3abcb648565b1c521c41d49ecd7c93a45c6d97.zip cpython-1a3abcb648565b1c521c41d49ecd7c93a45c6d97.tar.gz cpython-1a3abcb648565b1c521c41d49ecd7c93a45c6d97.tar.bz2 |
This started opening files in text mode by default in the 2.3 release,
which is a disaster on Windows. Restored the binary default of all
previous releases. Also minor code cleanups.
Bugfix candidate!
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -52,6 +52,12 @@ Library Tools/Demos ----------- +- md5sum.py mistakenly opened input files in text mode by default, a + silent and dangerous change from previous releases. It once again + opens input files in binary mode by default. The -t and -b flags + remain for compatibility with the 2.3 release, but -b is the default + now. + - py-electric-colon now works when pending-delete/delete-selection mode is in effect |