diff options
author | Georg Brandl <georg@python.org> | 2011-06-18 13:49:00 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-06-18 13:49:00 +0200 |
commit | 1507dac8fd099aad7afca378965ceb508b00dddd (patch) | |
tree | 7c7a3448b6b7628f8bd33e207c1b68854ad375ae /pygments/lexers/pypylog.py | |
parent | 522b59a55921a278a847c573974811417cd9fac6 (diff) | |
parent | 0bf6072b0e75fa4b6afab5d23477d7aa4aa1c77c (diff) | |
download | pygments-1507dac8fd099aad7afca378965ceb508b00dddd.tar.gz |
merge with bgoetzmann/pygments-main
Diffstat (limited to 'pygments/lexers/pypylog.py')
-rw-r--r-- | pygments/lexers/pypylog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/pypylog.py b/pygments/lexers/pypylog.py index 186a532f..f2363c5d 100644 --- a/pygments/lexers/pypylog.py +++ b/pygments/lexers/pypylog.py @@ -29,7 +29,7 @@ class PyPyLogLexer(RegexLexer): (r"[ifp]\d+", Name), (r"ptr\d+", Name), - (r"(\()([\w_]+(:\.[\w_]+)?)(\))", bygroups(Punctuation, Name.Builtin, Punctuation)), + (r"(\()([\w_]+(?:\.[\w_]+)?)(\))", bygroups(Punctuation, Name.Builtin, Punctuation)), (r"[\[\]=,()]", Punctuation), (r"(\d+\.\d+|inf|-inf)", Number.Float), (r"-?\d+", Number.Integer), |