summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-07-25 19:58:18 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-07-25 19:58:18 (GMT)
commit6e1df8d0d44817a7b9810c7d8b5c81423fb52cdb (patch)
tree588d5f9bb3fd88f16e1ec09ea3556dde21647f4f /Misc
parentc2542e986d0070840e8e8833268b9d5c9f297f7c (diff)
downloadcpython-6e1df8d0d44817a7b9810c7d8b5c81423fb52cdb.zip
cpython-6e1df8d0d44817a7b9810c7d8b5c81423fb52cdb.tar.gz
cpython-6e1df8d0d44817a7b9810c7d8b5c81423fb52cdb.tar.bz2
Merged revisions 65235 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r65235 | antoine.pitrou | 2008-07-25 21:42:26 +0200 (ven., 25 juil. 2008) | 3 lines #3394: zipfile.writestr doesn't set external attributes, so files are extracted mode 000 on Unix ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS17
1 files changed, 15 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 54a0baa..76ecbcc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -4,6 +4,19 @@ Python News
(editors: check NEWS.help for information about editing NEWS using ReST.)
+What's new in Python 3.0b3?
+===========================
+
+*Release date: XX-XXX-2008*
+
+Library
+-------
+
+- Issue #3394: zipfile.writestr sets external attributes when passed a
+ file name rather than a ZipInfo instance, so files are extracted with
+ mode 0600 rather than 000 under Unix.
+
+
What's new in Python 3.0b2?
===========================
@@ -191,7 +204,7 @@ Library
- The ``xmlrpc`` package was created; it contains the old
``xmlrpclib`` module as ``xmlrpc.client`` and the content of
the old ``SimpleXMLRPCServer`` and ``DocXMLRPCServer`` modules
- as ``xmlrpc.server``.
+ as ``xmlrpc.server``.
- The ``dbm`` package was created, containing the old modules
``anydbm`` and ``whichdb`` in its ``__init__.py``, and having
@@ -562,7 +575,7 @@ Core and Builtins
- Fixed `imp.find_module()` to obey the -*- coding: -*- header.
- Changed `__file__` and `co_filename` to unicode. The path names are decoded
- with `Py_FileSystemDefaultEncoding` and a new API method
+ with `Py_FileSystemDefaultEncoding` and a new API method
`PyUnicode_DecodeFSDefault(char*)` was added.
- io.open() and _fileio.FileIO have grown a new argument closefd. A