diff options
author | gbrandl <devnull@localhost> | 2008-09-12 00:56:35 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2008-09-12 00:56:35 +0200 |
commit | 24978830445a819852bd5216dd78ed48c66a25c4 (patch) | |
tree | 96c975167b11e0cf5b499669e58f51f03f54c71e /pygments/token.py | |
parent | 4f99cd0913f07f5fafcd818dce59beaa25b7cfc1 (diff) | |
parent | 6dd9fa10fa4d2cd51e320a3b3722aa5269786d47 (diff) | |
download | pygments-24978830445a819852bd5216dd78ed48c66a25c4.tar.gz |
Merge with Ben.
Diffstat (limited to 'pygments/token.py')
-rw-r--r-- | pygments/token.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/pygments/token.py b/pygments/token.py index 6db41a56..4fc50919 100644 --- a/pygments/token.py +++ b/pygments/token.py @@ -201,21 +201,3 @@ STANDARD_TYPES = { Generic.Subheading: 'gu', Generic.Traceback: 'gt', } - - - -if __name__ == '__main__': - import sys - # sanity check for token name dict: no duplicate entries! - stp = STANDARD_TYPES.copy() - stp[Token] = '---' # Token and Text do conflict, that is okay - t = {} - for k, v in stp.iteritems(): - t.setdefault(v, []).append(k) - if len(t) == len(stp): - print 'Okay!' - sys.exit() - - for k, v in t.iteritems(): - if len(v) > 1: - print "%r has more than one key: %r" % (k, v) |