summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-02-23 17:52:07 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-02-23 17:52:07 (GMT)
commit4034685a58de66073a4e190dd8c9a2ef4dca67b5 (patch)
tree1a1deea97208de647629d0fbc67396ea8e155036 /Misc/NEWS
parentf0476e816950928246ee11d873fb13a86c691fb6 (diff)
downloadcpython-4034685a58de66073a4e190dd8c9a2ef4dca67b5.zip
cpython-4034685a58de66073a4e190dd8c9a2ef4dca67b5.tar.gz
cpython-4034685a58de66073a4e190dd8c9a2ef4dca67b5.tar.bz2
Issue #2051 and patch from Alexander Belopolsky:
Permission for pyc and pyo files are inherited from the py file.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7c81958..9e4a48b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Issue #2051: pyc and pyo files are not longer created with permission 644. The
+ mode is now inherited from the py file.
+
- Issue #2067: file.__exit__() now calls subclasses' close() method.
- Patch #1759: Backport of PEP 3129 class decorators.