Mercurial > public > mercurial-scm > hg
comparison mercurial/revlog.py @ 3891:6b4127c7d52a
Simplify i18n imports
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 14 Dec 2006 20:25:19 -0600 |
parents | abaee83ce0a6 |
children | 4df475e22248 |
comparison
equal
deleted
inserted
replaced
3890:2eec996f2fb9 | 3891:6b4127c7d52a |
---|---|
9 This software may be used and distributed according to the terms | 9 This software may be used and distributed according to the terms |
10 of the GNU General Public License, incorporated herein by reference. | 10 of the GNU General Public License, incorporated herein by reference. |
11 """ | 11 """ |
12 | 12 |
13 from node import * | 13 from node import * |
14 from i18n import gettext as _ | 14 from i18n import _ |
15 import binascii, changegroup, errno, ancestor, mdiff, os | 15 import binascii, changegroup, errno, ancestor, mdiff, os |
16 import sha, struct, util, zlib | 16 import sha, struct, util, zlib |
17 | 17 |
18 # revlog version strings | 18 # revlog version strings |
19 REVLOGV0 = 0 | 19 REVLOGV0 = 0 |