diff options
author | Georg Brandl <georg@python.org> | 2009-05-04 20:43:44 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-04 20:43:44 (GMT) |
commit | 17761d15c6a875a52ebca3c402765eaf27100f3d (patch) | |
tree | e4b8f9c0d26405c77fbdc47c7aae7e33911daf59 /Doc/reference | |
parent | ef24cb6437c5d718551266971fdd23d59033b947 (diff) | |
download | cpython-17761d15c6a875a52ebca3c402765eaf27100f3d.zip cpython-17761d15c6a875a52ebca3c402765eaf27100f3d.tar.gz cpython-17761d15c6a875a52ebca3c402765eaf27100f3d.tar.bz2 |
Merged revisions 72288 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72288 | georg.brandl | 2009-05-04 22:42:08 +0200 (Mo, 04 Mai 2009) | 1 line
#5925: fix highlighting of keyword table.
........
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index 5037da0..ab1b7f5 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -328,7 +328,9 @@ Keywords The following identifiers are used as reserved words, or *keywords* of the language, and cannot be used as ordinary identifiers. They must be spelled -exactly as written here:: +exactly as written here: + +.. sourcecode:: text False class finally is return None continue for lambda try |