diff options
author | terryjreedy <tjreedy@udel.edu> | 2017-06-27 00:48:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-27 00:48:39 (GMT) |
commit | 938e73809d10f6073c85ecd330c88a85c6095530 (patch) | |
tree | a65867cc2ba49377a60aa852ac0ecbc4eb9bba0a /Misc | |
parent | 9ad50d94599aed0c37beaf78948ec271c8aa3881 (diff) | |
download | cpython-938e73809d10f6073c85ecd330c88a85c6095530.zip cpython-938e73809d10f6073c85ecd330c88a85c6095530.tar.gz cpython-938e73809d10f6073c85ecd330c88a85c6095530.tar.bz2 |
[3.6] bpo-30728: IDLE: Refactor configdialog to PEP8 names (GH-2307) (#2421)
Also, change '*' in the tkinter import to an explicit list of names.
Patch by Cheryl Sabella.
(cherry picked from commit bac7d33)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2017-06-26-15-47-13.bpo-30728.qH4TGL.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2017-06-26-15-47-13.bpo-30728.qH4TGL.rst b/Misc/NEWS.d/next/IDLE/2017-06-26-15-47-13.bpo-30728.qH4TGL.rst new file mode 100644 index 0000000..014eff3 --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2017-06-26-15-47-13.bpo-30728.qH4TGL.rst @@ -0,0 +1,4 @@ +Review and change idlelib.configdialog names. +Lowercase method and attribute names. +Replace 'colour' with 'color', expand overly cryptic names, delete unneeded underscores. +Replace ``import *`` with specific imports. Patches by Cheryl Sabella. |