hgext/win32text.py
changeset 25186 80c5b2666a96
parent 20624 23146e4d9cee
child 25829 38cf0908bf98
equal deleted inserted replaced
25185:bf6b476f3b36 25186:80c5b2666a96
    44 from mercurial.i18n import _
    44 from mercurial.i18n import _
    45 from mercurial.node import short
    45 from mercurial.node import short
    46 from mercurial import util
    46 from mercurial import util
    47 import re
    47 import re
    48 
    48 
       
    49 # Note for extension authors: ONLY specify testedwith = 'internal' for
       
    50 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
       
    51 # be specifying the version(s) of Mercurial they are tested with, or
       
    52 # leave the attribute unspecified.
    49 testedwith = 'internal'
    53 testedwith = 'internal'
    50 
    54 
    51 # regexp for single LF without CR preceding.
    55 # regexp for single LF without CR preceding.
    52 re_single_lf = re.compile('(^|[^\r])\n', re.MULTILINE)
    56 re_single_lf = re.compile('(^|[^\r])\n', re.MULTILINE)
    53 
    57