summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-07-06 05:38:24 (GMT)
committerGitHub <noreply@github.com>2017-07-06 05:38:24 (GMT)
commit03b0e8374b2ea93adf8fb6a48db2916f3b0388cc (patch)
tree12743d6b43e1dff7f8bbacab2b6a5f0bb5a72141 /Misc/NEWS
parentaaa4f991518611d101fba1ef3ecb18d7b385ad5b (diff)
downloadcpython-03b0e8374b2ea93adf8fb6a48db2916f3b0388cc.zip
cpython-03b0e8374b2ea93adf8fb6a48db2916f3b0388cc.tar.gz
cpython-03b0e8374b2ea93adf8fb6a48db2916f3b0388cc.tar.bz2
[3.6] bpo-30814: Fixed a race condition when import a submodule from a package. (GH-2580). (#2598)
(cherry picked from commit b4baacee1adc06edbe30ac7574d17a8cd168e2e0)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 92ccf52..89876f8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.6.3 release candidate 1?
Core and Builtins
-----------------
+- bpo-30814: Fixed a race condition when import a submodule from a package.
+
- bpo-30597: ``print`` now shows expected input in custom error message when
used as a Python 2 statement. Patch by Sanyam Khurana.