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