diff options
author | Georg Brandl <georg@python.org> | 2014-09-20 00:29:12 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-09-20 00:29:12 +0200 |
commit | 034c993d384182ab1e0353424aa2ea22a1ef9920 (patch) | |
tree | 6a8a393e566e8646e65c52fbaccd9256e26c9e73 /pygments/lexers/math.py | |
parent | bb8d58a147fb3dc7ec11f928b6d97e8b47ade1ba (diff) | |
download | pygments-034c993d384182ab1e0353424aa2ea22a1ef9920.tar.gz |
fix mapping
Diffstat (limited to 'pygments/lexers/math.py')
-rw-r--r-- | pygments/lexers/math.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/math.py b/pygments/lexers/math.py index c287a717..ffb01cea 100644 --- a/pygments/lexers/math.py +++ b/pygments/lexers/math.py @@ -22,11 +22,11 @@ from pygments.token import Comment, String, Punctuation, Keyword, Name, \ from pygments.lexers import _scilab_builtins from pygments.lexers import _stan_builtins - +# backwards compat from pygments.lexers.python import NumPyLexer __all__ = ['JuliaLexer', 'JuliaConsoleLexer', 'MuPADLexer', 'MatlabLexer', - 'MatlabSessionLexer', 'OctaveLexer', 'ScilabLexer', 'NumPyLexer', + 'MatlabSessionLexer', 'OctaveLexer', 'ScilabLexer', 'RConsoleLexer', 'SLexer', 'JagsLexer', 'BugsLexer', 'StanLexer', 'IDLLexer', 'RdLexer', 'IgorLexer', 'MathematicaLexer', 'GAPLexer'] |