summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-07-19 02:25:02 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-07-19 02:25:02 (GMT)
commit10fc39563cdb2953bc0eae634ac1efd2ff82eb5d (patch)
tree4438054b17fa290b93a6b41ee221f3a8c9f63c62
parent07fc01f9efa00e04d38d19bb722f65be0a1f39ad (diff)
downloadcpython-10fc39563cdb2953bc0eae634ac1efd2ff82eb5d.zip
cpython-10fc39563cdb2953bc0eae634ac1efd2ff82eb5d.tar.gz
cpython-10fc39563cdb2953bc0eae634ac1efd2ff82eb5d.tar.bz2
Merged revisions 74087 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r74087 | r.david.murray | 2009-07-18 22:22:05 -0400 (Sat, 18 Jul 2009) | 2 lines News item for issue 6070 fix that was omitted from r74058 merge. ........
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 964967b..286c924 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1.1?
Core and Builtins
-----------------
+- Issue #6070: On posix platforms import no longer copies the execute bit
+ from the .py file to the .pyc file if it is set.
+
- Issue #6428: Since Python 3.0, the __bool__ method must return a bool
object, and not an int. Fix the corresponding error message, and the
documentation.