diff options
author | Georg Brandl <georg@python.org> | 2012-12-25 11:23:07 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-12-25 11:23:07 +0100 |
commit | e874ba8fafa042242b1a920f483ac566315124ea (patch) | |
tree | 3d4d93e7cff9572113c8f6762a89fe3251ad2a0c | |
parent | 2d3726adc7031dd2f287f142c3e1560bd6f8cef1 (diff) | |
download | pygments-e874ba8fafa042242b1a920f483ac566315124ea.tar.gz |
Julia lexer: import missing "shebang_matches" function
-rw-r--r-- | pygments/lexers/math.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pygments/lexers/math.py b/pygments/lexers/math.py index 5e8461da..b36e7a7c 100644 --- a/pygments/lexers/math.py +++ b/pygments/lexers/math.py @@ -11,6 +11,7 @@ import re +from pygments.util import shebang_matches from pygments.lexer import Lexer, RegexLexer, bygroups, include, \ combined, do_insertions from pygments.token import Comment, String, Punctuation, Keyword, Name, \ |