summaryrefslogtreecommitdiffstats
path: root/Mac/Tools
diff options
context:
space:
mode:
authorJust van Rossum <just@lettererror.com>2000-04-09 19:44:13 (GMT)
committerJust van Rossum <just@lettererror.com>2000-04-09 19:44:13 (GMT)
commit6e5f2d1f8ec837cb7ae7786a85683143212aef13 (patch)
tree018c9b62e76095c44263ed172f86dc2cc1dde5a9 /Mac/Tools
parent7d7bb919261642608b8fef2767d2b343b11ae7ec (diff)
downloadcpython-6e5f2d1f8ec837cb7ae7786a85683143212aef13.zip
cpython-6e5f2d1f8ec837cb7ae7786a85683143212aef13.tar.gz
cpython-6e5f2d1f8ec837cb7ae7786a85683143212aef13.tar.bz2
oops, keyword list missed exec... doh! thanks to Maik Roeder (jvr)
Diffstat (limited to 'Mac/Tools')
-rw-r--r--Mac/Tools/IDE/PyFontify.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Tools/IDE/PyFontify.py b/Mac/Tools/IDE/PyFontify.py
index a61de65..d60456c 100644
--- a/Mac/Tools/IDE/PyFontify.py
+++ b/Mac/Tools/IDE/PyFontify.py
@@ -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",