diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-07-06 05:38:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-06 05:38:24 (GMT) |
commit | 03b0e8374b2ea93adf8fb6a48db2916f3b0388cc (patch) | |
tree | 12743d6b43e1dff7f8bbacab2b6a5f0bb5a72141 /Misc/NEWS | |
parent | aaa4f991518611d101fba1ef3ecb18d7b385ad5b (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |