diff options
Diffstat (limited to 'pygments/lexer.py')
-rw-r--r-- | pygments/lexer.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/lexer.py b/pygments/lexer.py index be1e07db..20096677 100644 --- a/pygments/lexer.py +++ b/pygments/lexer.py @@ -230,7 +230,8 @@ class combined(tuple): return tuple.__new__(cls, args) def __init__(self, *args): - tuple.__init__(self, args) + # tuple.__init__ doesn't do anything + pass class _PseudoMatch(object): |