diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-07-28 01:30:58 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-07-28 01:30:58 (GMT) |
commit | 8bde9111157e0eb994159c1506b1cec86298f810 (patch) | |
tree | 27d5ea90712d9eee3e678804ef581bac50ff9ba2 /Lib/idlelib | |
parent | 4b53359090b7b3cfad128e40083f563f7c1900e4 (diff) | |
parent | eb9957065acaafbf3d8ebee4770ecb13ea0c07c0 (diff) | |
download | cpython-8bde9111157e0eb994159c1506b1cec86298f810.zip cpython-8bde9111157e0eb994159c1506b1cec86298f810.tar.gz cpython-8bde9111157e0eb994159c1506b1cec86298f810.tar.bz2 |
Issue #27626: Merge spelling fixes from 3.5
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/calltip_w.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/parenmatch.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/calltip_w.py b/Lib/idlelib/calltip_w.py index b3c3e5e..c7361d1 100644 --- a/Lib/idlelib/calltip_w.py +++ b/Lib/idlelib/calltip_w.py @@ -9,7 +9,7 @@ HIDE_VIRTUAL_EVENT_NAME = "<<calltipwindow-hide>>" HIDE_SEQUENCES = ("<Key-Escape>", "<FocusOut>") CHECKHIDE_VIRTUAL_EVENT_NAME = "<<calltipwindow-checkhide>>" CHECKHIDE_SEQUENCES = ("<KeyRelease>", "<ButtonRelease>") -CHECKHIDE_TIME = 100 # miliseconds +CHECKHIDE_TIME = 100 # milliseconds MARK_RIGHT = "calltipwindowregion_right" diff --git a/Lib/idlelib/parenmatch.py b/Lib/idlelib/parenmatch.py index e98fac1..1428114 100644 --- a/Lib/idlelib/parenmatch.py +++ b/Lib/idlelib/parenmatch.py @@ -9,7 +9,7 @@ from idlelib.hyperparser import HyperParser from idlelib.config import idleConf _openers = {')':'(',']':'[','}':'{'} -CHECK_DELAY = 100 # miliseconds +CHECK_DELAY = 100 # milliseconds class ParenMatch: """Highlight matching parentheses |