Mercurial > hg
comparison mercurial/obsolete.py @ 17405:b0aad9fb87f9 stable
obsolete: import modules within mercurial/ without "from mercurial"
author | Steve Borho <steve@borho.org> |
---|---|
date | Tue, 28 Aug 2012 11:15:34 -0500 |
parents | 0368fc55d572 |
children | e7cfe3587ea4 |
comparison
equal
deleted
inserted
replaced
17394:19e4861f9730 | 17405:b0aad9fb87f9 |
---|---|
50 string contains a key and a value, separated by a color ':', without | 50 string contains a key and a value, separated by a color ':', without |
51 additional encoding. Keys cannot contain '\0' or ':' and values | 51 additional encoding. Keys cannot contain '\0' or ':' and values |
52 cannot contain '\0'. | 52 cannot contain '\0'. |
53 """ | 53 """ |
54 import struct | 54 import struct |
55 from mercurial import util, base85 | 55 import util, base85 |
56 from i18n import _ | 56 from i18n import _ |
57 | 57 |
58 # the obsolete feature is not mature enought to be enabled by default. | 58 # the obsolete feature is not mature enought to be enabled by default. |
59 # you have to rely on third party extension extension to enable this. | 59 # you have to rely on third party extension extension to enable this. |
60 _enabled = False | 60 _enabled = False |