summaryrefslogtreecommitdiff
path: root/pygments/lexer.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-10-29 07:18:01 +0100
committergbrandl <devnull@localhost>2006-10-29 07:18:01 +0100
commit415b0f78ad57c1ebd37cfbdeda525c8e791b20ea (patch)
tree5ae5a42df6d0081223267fb29feadc877cb302bc /pygments/lexer.py
parentb24d2bce5ae5639111dbaed3711481a498d0c5d2 (diff)
downloadpygments-415b0f78ad57c1ebd37cfbdeda525c8e791b20ea.tar.gz
[svn] Remove altlast.
Diffstat (limited to 'pygments/lexer.py')
-rw-r--r--pygments/lexer.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/pygments/lexer.py b/pygments/lexer.py
index 8f9c7d7b..28c5c825 100644
--- a/pygments/lexer.py
+++ b/pygments/lexer.py
@@ -36,9 +36,6 @@ class LexerMeta(type):
def __new__(cls, name, bases, d):
if 'analyse_text' in d:
d['analyse_text'] = make_analysator(d['analyse_text'])
- for key in 'aliases', 'filenames', 'alias_filenames':
- if key in d:
- d[key] = set(d[key])
return type.__new__(cls, name, bases, d)