comparison hgext/color.py @ 16743:38caf405d010

hgext: mark all first-party extensions as such
author Augie Fackler <raf@durin42.com>
date Tue, 15 May 2012 14:37:49 -0500
parents 425c1309718f
children e7cfe3587ea4
comparison
equal deleted inserted replaced
16742:973671fc0804 16743:38caf405d010
102 102
103 import os 103 import os
104 104
105 from mercurial import commands, dispatch, extensions, ui as uimod, util 105 from mercurial import commands, dispatch, extensions, ui as uimod, util
106 from mercurial.i18n import _ 106 from mercurial.i18n import _
107
108 testedwith = 'internal'
107 109
108 # start and stop parameters for effects 110 # start and stop parameters for effects
109 _effects = {'none': 0, 'black': 30, 'red': 31, 'green': 32, 'yellow': 33, 111 _effects = {'none': 0, 'black': 30, 'red': 31, 'green': 32, 'yellow': 33,
110 'blue': 34, 'magenta': 35, 'cyan': 36, 'white': 37, 'bold': 1, 112 'blue': 34, 'magenta': 35, 'cyan': 36, 'white': 37, 'bold': 1,
111 'italic': 3, 'underline': 4, 'inverse': 7, 113 'italic': 3, 'underline': 4, 'inverse': 7,