##// END OF EJS Templates
hg: update top-level script to use modern import conventions
Augie Fackler -
r33897:1900381b default
parent child Browse files
Show More
@@ -1,45 +1,47 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 #
2 #
3 # mercurial - scalable distributed SCM
3 # mercurial - scalable distributed SCM
4 #
4 #
5 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
5 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
6 #
6 #
7 # This software may be used and distributed according to the terms of the
7 # This software may be used and distributed according to the terms of the
8 # GNU General Public License version 2 or any later version.
8 # GNU General Public License version 2 or any later version.
9 from __future__ import absolute_import
9
10
10 import os
11 import os
11 import sys
12 import sys
12
13
13 if os.environ.get('HGUNICODEPEDANTRY', False):
14 if os.environ.get('HGUNICODEPEDANTRY', False):
14 try:
15 try:
15 reload(sys)
16 reload(sys)
16 sys.setdefaultencoding("undefined")
17 sys.setdefaultencoding("undefined")
17 except NameError:
18 except NameError:
18 pass
19 pass
19
20
20 libdir = '@LIBDIR@'
21 libdir = '@LIBDIR@'
21
22
22 if libdir != '@' 'LIBDIR' '@':
23 if libdir != '@' 'LIBDIR' '@':
23 if not os.path.isabs(libdir):
24 if not os.path.isabs(libdir):
24 libdir = os.path.join(os.path.dirname(os.path.realpath(__file__)),
25 libdir = os.path.join(os.path.dirname(os.path.realpath(__file__)),
25 libdir)
26 libdir)
26 libdir = os.path.abspath(libdir)
27 libdir = os.path.abspath(libdir)
27 sys.path.insert(0, libdir)
28 sys.path.insert(0, libdir)
28
29
29 # enable importing on demand to reduce startup time
30 # enable importing on demand to reduce startup time
30 try:
31 try:
31 if sys.version_info[0] < 3 or sys.version_info >= (3, 6):
32 if sys.version_info[0] < 3 or sys.version_info >= (3, 6):
32 import hgdemandimport; hgdemandimport.enable()
33 import hgdemandimport; hgdemandimport.enable()
33 except ImportError:
34 except ImportError:
34 sys.stderr.write("abort: couldn't find mercurial libraries in [%s]\n" %
35 sys.stderr.write("abort: couldn't find mercurial libraries in [%s]\n" %
35 ' '.join(sys.path))
36 ' '.join(sys.path))
36 sys.stderr.write("(check your install and PYTHONPATH)\n")
37 sys.stderr.write("(check your install and PYTHONPATH)\n")
37 sys.exit(-1)
38 sys.exit(-1)
38
39
39 import mercurial.util
40 from mercurial import (
40 import mercurial.dispatch
41 dispatch,
41
42 util,
43 )
42 for fp in (sys.stdin, sys.stdout, sys.stderr):
44 for fp in (sys.stdin, sys.stdout, sys.stderr):
43 mercurial.util.setbinary(fp)
45 util.setbinary(fp)
44
46
45 mercurial.dispatch.run()
47 dispatch.run()
General Comments 0
You need to be logged in to leave comments. Login now