diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2011-10-27 23:13:12 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2011-10-27 23:13:12 -0400 |
commit | 67fa170644fa09017933f2c7b12a9dbe1fdd74fb (patch) | |
tree | 1ad6a0b6ceb3fb09460f544fbe62d45556110d52 | |
parent | 8ae412d0e5262f91179a100a4fb5409186b1db6d (diff) | |
download | pygments-67fa170644fa09017933f2c7b12a9dbe1fdd74fb.tar.gz |
new keywords for the pypy lexer
-rw-r--r-- | pygments/lexers/pypylog.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pygments/lexers/pypylog.py b/pygments/lexers/pypylog.py index c06feedf..33fac395 100644 --- a/pygments/lexers/pypylog.py +++ b/pygments/lexers/pypylog.py @@ -55,14 +55,15 @@ class PyPyLogLexer(RegexLexer): r"uint_floordiv|uint_ge|uint_lt|" r"float_add|float_sub|float_mul|float_truediv|" r"float_eq|float_ne|float_ge|float_gt|float_le|float_lt|float_abs|" - r"ptr_eq|" - r"cast_int_to_float|cast_float_to_int|cast_opaque_ptr|" - r"force_token|quasiimmut_field|same_as|virtual_ref_finish|virtual_ref|" + r"ptr_eq|ptr_ne|" + r"cast_int_to_float|cast_float_to_int|" + r"force_token|quasiimmut_field|same_as|virtual_ref_finish|virtual_ref|mark_opaque_ptr|" 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|" r"getarrayitem_raw|setarrayitem_raw|getfield_gc_pure|getfield_gc|getinteriorfield_gc|" + r"getinteriorfield_gc|setinteriorfield_gc|" r"getfield_raw|setfield_gc|setfield_raw|" r"strgetitem|strsetitem|strlen|copystrcontent|" r"unicodegetitem|unicodesetitem|unicodelen|" |