aboutsummaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-12-11 05:33:36 -0500
committerTerry Jan Reedy <tjreedy@udel.edu>2014-12-11 05:33:36 -0500
commit049882e561aeae334e71063792ddd7883fc52764 (patch)
treec96c65a454bba13ce158ec8f734f3b319bf2c414 /Lib
parentIssue #22823: Fixed an output of sets in examples. (diff)
downloadcpython-049882e561aeae334e71063792ddd7883fc52764.tar.gz
cpython-049882e561aeae334e71063792ddd7883fc52764.tar.bz2
cpython-049882e561aeae334e71063792ddd7883fc52764.zip
Issue 22823: Use set literal in idlelib.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/idlelib/CodeContext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/CodeContext.py b/Lib/idlelib/CodeContext.py
index 84491d5a9d1..44783b69d0b 100644
--- a/Lib/idlelib/CodeContext.py
+++ b/Lib/idlelib/CodeContext.py
@@ -15,8 +15,8 @@ import re
from sys import maxsize as INFINITY
from idlelib.configHandler import idleConf
-BLOCKOPENERS = set(["class", "def", "elif", "else", "except", "finally", "for",
- "if", "try", "while", "with"])
+BLOCKOPENERS = {"class", "def", "elif", "else", "except", "finally", "for",
+ "if", "try", "while", "with"}
UPDATEINTERVAL = 100 # millisec
FONTUPDATEINTERVAL = 1000 # millisec