diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2011-09-02 18:49:18 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2011-09-02 18:49:18 -0400 |
commit | 7454d6de7bb8ea3f263126108bb5dfc5b32e0b7f (patch) | |
tree | a9d2c4f58b9004190731cf0809ebb5e77ab1d747 | |
parent | b8fb284225d25a1947273568698bf530617a43ec (diff) | |
download | pygments-7454d6de7bb8ea3f263126108bb5dfc5b32e0b7f.tar.gz |
Add in another operation to the pypylog lexer.
-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 a835d790..e5f10c9f 100644 --- a/pygments/lexers/pypylog.py +++ b/pygments/lexers/pypylog.py @@ -58,7 +58,7 @@ class PyPyLogLexer(RegexLexer): r"ptr_eq|" r"cast_int_to_float|cast_float_to_int|" r"force_token|quasiimmut_field|same_as|virtual_ref_finish|virtual_ref|" - r"call_may_force|call_assembler|call_loopinvariant|call_pure|call|" + r"call_may_force|call_assembler|call_loopinvariant|call_release_gil|call_pure|call|" r"new_with_vtable|new_array|newstr|newunicode|new|" r"arraylen_gc|" r"getarrayitem_gc_pure|getarrayitem_gc|setarrayitem_gc|" |