diff options
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), |