]> granicus.if.org Git - python/commitdiff
oops, keyword list missed exec... doh! thanks to Maik Roeder (jvr)
authorJust van Rossum <just@lettererror.com>
Sun, 9 Apr 2000 19:44:13 +0000 (19:44 +0000)
committerJust van Rossum <just@lettererror.com>
Sun, 9 Apr 2000 19:44:13 +0000 (19:44 +0000)
Mac/Tools/IDE/PyFontify.py

index a61de659b8f6cce1f08b44af24c8bd12b397f1d7..d60456c67696540803d94ec1199fdc5447d5922e 100644 (file)
@@ -25,7 +25,7 @@ sublist is not used, hence always None.
 #      Tim Peters,
 #      Just van Rossum
 
-__version__ = "0.3.1"
+__version__ = "0.3.2"
 
 import string, regex
 
@@ -37,7 +37,7 @@ def replace(where, what, with):
 # This list of keywords is taken from ref/node13.html of the
 # Python 1.3 HTML documentation. ("access" is intentionally omitted.)
 keywordsList = [
-       "assert",
+       "assert", "exec",
        "del", "from", "lambda", "return",
        "and", "elif", "global", "not", "try",
        "break", "else", "if", "or", "while",