diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-01-06 20:55:52 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-01-06 20:55:52 (GMT) |
commit | 11303dd6035a7d7f78025ce5a3e3b9bdf7380c9a (patch) | |
tree | 75c9d14a390e33c10f120df741cff90d3177f179 /Misc/NEWS.d | |
parent | 83da926b89daf80013ea966037c2c0e1e9d25c6b (diff) | |
download | cpython-11303dd6035a7d7f78025ce5a3e3b9bdf7380c9a.zip cpython-11303dd6035a7d7f78025ce5a3e3b9bdf7380c9a.tar.gz cpython-11303dd6035a7d7f78025ce5a3e3b9bdf7380c9a.tar.bz2 |
bpo-35660: Fix imports in idlelib.window (#11434)
* bpo-35660: IDLE: Remove * import from window.py
* sys was being imported through the *, so also added an import sys.
* Update 2019-01-04-19-14-29.bpo-35660.hMxI7N.rst
Anyone who wants details can check the issue, where I added the point about the sys import bug.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2019-01-04-19-14-29.bpo-35660.hMxI7N.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2019-01-04-19-14-29.bpo-35660.hMxI7N.rst b/Misc/NEWS.d/next/IDLE/2019-01-04-19-14-29.bpo-35660.hMxI7N.rst new file mode 100644 index 0000000..1ad83fe --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2019-01-04-19-14-29.bpo-35660.hMxI7N.rst @@ -0,0 +1 @@ +Fix imports in idlelib.window. |