diff options
author | gbrandl <devnull@localhost> | 2007-08-17 07:45:32 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-08-17 07:45:32 +0200 |
commit | 5b9f5540856fc18c22348f4346817d9d39a920f8 (patch) | |
tree | 52aae43c8d1e801c3ca1238ce01f5b2d566609c5 /pygments/lexer.py | |
parent | 769751f93a39431f417c2d03944f84f7cf42b71e (diff) | |
download | pygments-5b9f5540856fc18c22348f4346817d9d39a920f8.tar.gz |
[svn] Fix in the Python lexer, 2.6 compatibility fixes.
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): |