summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-10-19 13:32:00 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-10-19 13:32:00 (GMT)
commiteb8d627bbdf5a6c0a467a598976b7ebfde50e49f (patch)
tree4d36ab361cf9bb941517d366f3a993cf307e2c59 /Misc
parent90eb8ae6ce1f723695953db3acc9ca8c861ab81e (diff)
downloadcpython-eb8d627bbdf5a6c0a467a598976b7ebfde50e49f.zip
cpython-eb8d627bbdf5a6c0a467a598976b7ebfde50e49f.tar.gz
cpython-eb8d627bbdf5a6c0a467a598976b7ebfde50e49f.tar.bz2
Issue #6074: Apply an appropriate fix for importlib based imports
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 98c8749..bd4177c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
+- Issue #6074: Ensure cached bytecode files can always be updated by the
+ user that created them, even when the source file is read-only.
+
- Issue #14783: Improve int() docstring and switch docstrings for str(),
range(), and slice() to use multi-line signatures.