diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-09-19 14:44:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-09-19 14:44:45 +0900 |
commit | 87fd132d0145d36d9eae9cdf521935202db228f7 (patch) | |
tree | 8e8126d831ffd90f38c34e49cdaec9b134086a8a /kate/data/python.xml | |
parent | 2824570e9e6581acc1b9ed81a8889ff5f58dd383 (diff) | |
download | tdelibs-87fd132d0145d36d9eae9cdf521935202db228f7.tar.gz tdelibs-87fd132d0145d36d9eae9cdf521935202db228f7.zip |
Kate syntax highlighting files update - Sep 2014
Diffstat (limited to 'kate/data/python.xml')
-rw-r--r-- | kate/data/python.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kate/data/python.xml b/kate/data/python.xml index 9cbae2df1..e77aa8c03 100644 --- a/kate/data/python.xml +++ b/kate/data/python.xml @@ -13,7 +13,7 @@ <!-- v2.06 decorator names can (and often do) contain periods --> <!-- v2.07 add support for %prog and co, see bug 142832 --> <!-- v2.08 add missing overloaders, new Python 3 statements, builtins, and keywords --> -<language name="Python" version="2.22" style="python" kateversion="2.4" section="Scripts" extensions="*.py;*.pyw;SConstruct;SConscript" mimetype="application/x-python;text/x-python" casesensitive="1" author="Michael Bueker" license=""> +<language name="Python" version="2.23" style="python" kateversion="2.4" section="Scripts" extensions="*.py;*.pyw;SConstruct;SConscript" mimetype="application/x-python;text/x-python" casesensitive="1" author="Michael Bueker" license=""> <highlighting> <list name="prep"> <item> import </item> @@ -378,10 +378,10 @@ <StringDetect attribute="String" String="u"""" insensitive="true" context="Tripple Q-string" beginRegion="Tripple Q-region"/> <!-- ' --> <DetectChar attribute="String" char="'" context="Single A-string"/> - <Detect2Chars attribute="String" char="u" char1="'" insensitive="true" context="Single A-string"/> + <StringDetect attribute="String" String="u'" insensitive="true" context="Single A-string"/> <!-- " --> <DetectChar attribute="String" char=""" context="Single Q-string"/> - <Detect2Chars attribute="String" char="u" char1=""" insensitive="true" context="Single Q-string"/> + <StringDetect attribute="String" String="u"" insensitive="true" context="Single Q-string"/> <!-- ''' --> <StringDetect attribute="Raw String" String="r'''" insensitive="true" context="Raw Tripple A-string" beginRegion="Tripple A-region"/> @@ -407,10 +407,10 @@ <StringDetect attribute="Comment" String="u"""" insensitive="true" firstNonSpace="true" context="Tripple Q-comment" beginRegion="Tripple Q-region"/> <!-- ' --> <DetectChar attribute="Comment" char="'" firstNonSpace="true" context="Single A-comment"/> - <Detect2Chars attribute="Comment" char="u" char1="'" insensitive="true" firstNonSpace="true" context="Single A-comment"/> + <StringDetect attribute="Comment" String="u'" insensitive="true" firstNonSpace="true" context="Single A-comment"/> <!-- " --> <DetectChar attribute="Comment" char=""" firstNonSpace="true" context="Single Q-comment"/> - <Detect2Chars attribute="Comment" char="u" char1=""" insensitive="true" firstNonSpace="true" context="Single Q-comment"/> + <StringDetect attribute="Comment" String="u"" insensitive="true" firstNonSpace="true" context="Single Q-comment"/> <!-- ''' --> <StringDetect attribute="Comment" String="r'''" insensitive="true" firstNonSpace="true" context="Tripple A-comment" beginRegion="Tripple A-region"/> |