summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorcsabella <cheryl.sabella@gmail.com>2017-06-26 21:46:26 (GMT)
committerterryjreedy <tjreedy@udel.edu>2017-06-26 21:46:26 (GMT)
commitbac7d3363b099d0cdef3e541f8581859edfddc85 (patch)
tree8fb96ff853f177aee428c4a3cd1953c4bc38b66a /Misc
parentb350c22ebcbb891412e0b334afc9f0db19534e06 (diff)
downloadcpython-bac7d3363b099d0cdef3e541f8581859edfddc85.zip
cpython-bac7d3363b099d0cdef3e541f8581859edfddc85.tar.gz
cpython-bac7d3363b099d0cdef3e541f8581859edfddc85.tar.bz2
bpo-30728: IDLE: Refactor configdialog to PEP8 names (#2307)
Also, change '*' in the tkinter import to an explicit list of names. Patch by Cheryl Sabella.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/IDLE/2017-06-26-15-47-13.bpo-30728.qH4TGL.rst4
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.