Show More
@@ -1,108 +1,108 b'' | |||||
1 | # i18n.py - internationalization support for mercurial |
|
1 | # i18n.py - internationalization support for mercurial | |
2 | # |
|
2 | # | |
3 | # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> |
|
3 | # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | |
4 | # |
|
4 | # | |
5 | # This software may be used and distributed according to the terms of the |
|
5 | # This software may be used and distributed according to the terms of the | |
6 | # GNU General Public License version 2 or any later version. |
|
6 | # GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | from __future__ import absolute_import |
|
8 | from __future__ import absolute_import | |
9 |
|
9 | |||
10 | import gettext as gettextmod |
|
10 | import gettext as gettextmod | |
11 | import locale |
|
11 | import locale | |
12 | import os |
|
12 | import os | |
13 | import sys |
|
13 | import sys | |
14 |
|
14 | |||
15 | from . import ( |
|
15 | from . import ( | |
16 | encoding, |
|
16 | encoding, | |
17 | pycompat, |
|
17 | pycompat, | |
18 | ) |
|
18 | ) | |
19 |
|
19 | |||
20 | # modelled after templater.templatepath: |
|
20 | # modelled after templater.templatepath: | |
21 | if getattr(sys, 'frozen', None) is not None: |
|
21 | if getattr(sys, 'frozen', None) is not None: | |
22 | module = sys.executable |
|
22 | module = sys.executable | |
23 | else: |
|
23 | else: | |
24 | module = __file__ |
|
24 | module = __file__ | |
25 |
|
25 | |||
26 | try: |
|
26 | try: | |
27 | unicode |
|
27 | unicode | |
28 | except NameError: |
|
28 | except NameError: | |
29 | unicode = str |
|
29 | unicode = str | |
30 |
|
30 | |||
31 | _languages = None |
|
31 | _languages = None | |
32 | if (os.name == 'nt' |
|
32 | if (os.name == 'nt' | |
33 | and 'LANGUAGE' not in encoding.environ |
|
33 | and 'LANGUAGE' not in encoding.environ | |
34 | and 'LC_ALL' not in encoding.environ |
|
34 | and 'LC_ALL' not in encoding.environ | |
35 | and 'LC_MESSAGES' not in encoding.environ |
|
35 | and 'LC_MESSAGES' not in encoding.environ | |
36 | and 'LANG' not in encoding.environ): |
|
36 | and 'LANG' not in encoding.environ): | |
37 | # Try to detect UI language by "User Interface Language Management" API |
|
37 | # Try to detect UI language by "User Interface Language Management" API | |
38 | # if no locale variables are set. Note that locale.getdefaultlocale() |
|
38 | # if no locale variables are set. Note that locale.getdefaultlocale() | |
39 | # uses GetLocaleInfo(), which may be different from UI language. |
|
39 | # uses GetLocaleInfo(), which may be different from UI language. | |
40 | # (See http://msdn.microsoft.com/en-us/library/dd374098(v=VS.85).aspx ) |
|
40 | # (See http://msdn.microsoft.com/en-us/library/dd374098(v=VS.85).aspx ) | |
41 | try: |
|
41 | try: | |
42 | import ctypes |
|
42 | import ctypes | |
43 | langid = ctypes.windll.kernel32.GetUserDefaultUILanguage() |
|
43 | langid = ctypes.windll.kernel32.GetUserDefaultUILanguage() | |
44 | _languages = [locale.windows_locale[langid]] |
|
44 | _languages = [locale.windows_locale[langid]] | |
45 | except (ImportError, AttributeError, KeyError): |
|
45 | except (ImportError, AttributeError, KeyError): | |
46 | # ctypes not found or unknown langid |
|
46 | # ctypes not found or unknown langid | |
47 | pass |
|
47 | pass | |
48 |
|
48 | |||
49 | _ugettext = None |
|
49 | _ugettext = None | |
50 |
|
50 | |||
51 | def setdatapath(datapath): |
|
51 | def setdatapath(datapath): | |
52 | localedir = os.path.join(datapath, 'locale') |
|
52 | localedir = os.path.join(datapath, pycompat.sysstr('locale')) | |
53 | t = gettextmod.translation('hg', localedir, _languages, fallback=True) |
|
53 | t = gettextmod.translation('hg', localedir, _languages, fallback=True) | |
54 | global _ugettext |
|
54 | global _ugettext | |
55 | try: |
|
55 | try: | |
56 | _ugettext = t.ugettext |
|
56 | _ugettext = t.ugettext | |
57 | except AttributeError: |
|
57 | except AttributeError: | |
58 | _ugettext = t.gettext |
|
58 | _ugettext = t.gettext | |
59 |
|
59 | |||
60 | _msgcache = {} |
|
60 | _msgcache = {} | |
61 |
|
61 | |||
62 | def gettext(message): |
|
62 | def gettext(message): | |
63 | """Translate message. |
|
63 | """Translate message. | |
64 |
|
64 | |||
65 | The message is looked up in the catalog to get a Unicode string, |
|
65 | The message is looked up in the catalog to get a Unicode string, | |
66 | which is encoded in the local encoding before being returned. |
|
66 | which is encoded in the local encoding before being returned. | |
67 |
|
67 | |||
68 | Important: message is restricted to characters in the encoding |
|
68 | Important: message is restricted to characters in the encoding | |
69 | given by sys.getdefaultencoding() which is most likely 'ascii'. |
|
69 | given by sys.getdefaultencoding() which is most likely 'ascii'. | |
70 | """ |
|
70 | """ | |
71 | # If message is None, t.ugettext will return u'None' as the |
|
71 | # If message is None, t.ugettext will return u'None' as the | |
72 | # translation whereas our callers expect us to return None. |
|
72 | # translation whereas our callers expect us to return None. | |
73 | if message is None or not _ugettext: |
|
73 | if message is None or not _ugettext: | |
74 | return message |
|
74 | return message | |
75 |
|
75 | |||
76 | if message not in _msgcache: |
|
76 | if message not in _msgcache: | |
77 | if type(message) is unicode: |
|
77 | if type(message) is unicode: | |
78 | # goofy unicode docstrings in test |
|
78 | # goofy unicode docstrings in test | |
79 | paragraphs = message.split(u'\n\n') |
|
79 | paragraphs = message.split(u'\n\n') | |
80 | else: |
|
80 | else: | |
81 | paragraphs = [p.decode("ascii") for p in message.split('\n\n')] |
|
81 | paragraphs = [p.decode("ascii") for p in message.split('\n\n')] | |
82 | # Be careful not to translate the empty string -- it holds the |
|
82 | # Be careful not to translate the empty string -- it holds the | |
83 | # meta data of the .po file. |
|
83 | # meta data of the .po file. | |
84 | u = u'\n\n'.join([p and _ugettext(p) or u'' for p in paragraphs]) |
|
84 | u = u'\n\n'.join([p and _ugettext(p) or u'' for p in paragraphs]) | |
85 | try: |
|
85 | try: | |
86 | # encoding.tolocal cannot be used since it will first try to |
|
86 | # encoding.tolocal cannot be used since it will first try to | |
87 | # decode the Unicode string. Calling u.decode(enc) really |
|
87 | # decode the Unicode string. Calling u.decode(enc) really | |
88 | # means u.encode(sys.getdefaultencoding()).decode(enc). Since |
|
88 | # means u.encode(sys.getdefaultencoding()).decode(enc). Since | |
89 | # the Python encoding defaults to 'ascii', this fails if the |
|
89 | # the Python encoding defaults to 'ascii', this fails if the | |
90 | # translated string use non-ASCII characters. |
|
90 | # translated string use non-ASCII characters. | |
91 | encodingstr = pycompat.sysstr(encoding.encoding) |
|
91 | encodingstr = pycompat.sysstr(encoding.encoding) | |
92 | _msgcache[message] = u.encode(encodingstr, "replace") |
|
92 | _msgcache[message] = u.encode(encodingstr, "replace") | |
93 | except LookupError: |
|
93 | except LookupError: | |
94 | # An unknown encoding results in a LookupError. |
|
94 | # An unknown encoding results in a LookupError. | |
95 | _msgcache[message] = message |
|
95 | _msgcache[message] = message | |
96 | return _msgcache[message] |
|
96 | return _msgcache[message] | |
97 |
|
97 | |||
98 | def _plain(): |
|
98 | def _plain(): | |
99 | if ('HGPLAIN' not in encoding.environ |
|
99 | if ('HGPLAIN' not in encoding.environ | |
100 | and 'HGPLAINEXCEPT' not in encoding.environ): |
|
100 | and 'HGPLAINEXCEPT' not in encoding.environ): | |
101 | return False |
|
101 | return False | |
102 | exceptions = encoding.environ.get('HGPLAINEXCEPT', '').strip().split(',') |
|
102 | exceptions = encoding.environ.get('HGPLAINEXCEPT', '').strip().split(',') | |
103 | return 'i18n' not in exceptions |
|
103 | return 'i18n' not in exceptions | |
104 |
|
104 | |||
105 | if _plain(): |
|
105 | if _plain(): | |
106 | _ = lambda message: message |
|
106 | _ = lambda message: message | |
107 | else: |
|
107 | else: | |
108 | _ = gettext |
|
108 | _ = gettext |
@@ -1,155 +1,141 b'' | |||||
1 | #require test-repo |
|
1 | #require test-repo | |
2 |
|
2 | |||
3 | $ . "$TESTDIR/helpers-testrepo.sh" |
|
3 | $ . "$TESTDIR/helpers-testrepo.sh" | |
4 | $ cd "$TESTDIR"/.. |
|
4 | $ cd "$TESTDIR"/.. | |
5 |
|
5 | |||
6 | $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py |
|
6 | $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py | |
7 | hgext/fsmonitor/pywatchman/__init__.py not using absolute_import |
|
7 | hgext/fsmonitor/pywatchman/__init__.py not using absolute_import | |
8 | hgext/fsmonitor/pywatchman/__init__.py requires print_function |
|
8 | hgext/fsmonitor/pywatchman/__init__.py requires print_function | |
9 | hgext/fsmonitor/pywatchman/capabilities.py not using absolute_import |
|
9 | hgext/fsmonitor/pywatchman/capabilities.py not using absolute_import | |
10 | hgext/fsmonitor/pywatchman/pybser.py not using absolute_import |
|
10 | hgext/fsmonitor/pywatchman/pybser.py not using absolute_import | |
11 | i18n/check-translation.py not using absolute_import |
|
11 | i18n/check-translation.py not using absolute_import | |
12 | setup.py not using absolute_import |
|
12 | setup.py not using absolute_import | |
13 | tests/test-demandimport.py not using absolute_import |
|
13 | tests/test-demandimport.py not using absolute_import | |
14 |
|
14 | |||
15 | #if py3exe |
|
15 | #if py3exe | |
16 | $ hg files 'set:(**.py) - grep(pygments)' | sed 's|\\|/|g' \ |
|
16 | $ hg files 'set:(**.py) - grep(pygments)' | sed 's|\\|/|g' \ | |
17 | > | xargs $PYTHON3 contrib/check-py3-compat.py \ |
|
17 | > | xargs $PYTHON3 contrib/check-py3-compat.py \ | |
18 | > | sed 's/[0-9][0-9]*)$/*)/' |
|
18 | > | sed 's/[0-9][0-9]*)$/*)/' | |
19 | hgext/acl.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
19 | hgext/automv.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
20 | hgext/automv.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
20 | hgext/blackbox.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
21 | hgext/blackbox.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
21 | hgext/bugzilla.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
22 | hgext/bugzilla.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
22 | hgext/censor.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
23 | hgext/censor.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
23 | hgext/chgserver.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
24 | hgext/chgserver.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
24 | hgext/children.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
25 | hgext/children.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
25 | hgext/churn.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
26 | hgext/churn.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
26 | hgext/clonebundles.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
27 | hgext/clonebundles.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
27 | hgext/color.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
28 | hgext/color.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
29 | hgext/convert/bzr.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) |
|
28 | hgext/convert/bzr.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) | |
30 | hgext/convert/common.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
29 | hgext/convert/common.py: error importing module: <AttributeError> module 'mercurial.util' has no attribute 'pickle' (line *) | |
31 |
hgext/convert/convcmd.py: error importing: < |
|
30 | hgext/convert/convcmd.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
32 | hgext/convert/cvs.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
31 | hgext/convert/cvs.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) | |
33 |
hgext/convert/cvsps.py: error importing: < |
|
32 | hgext/convert/cvsps.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
34 | hgext/convert/darcs.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
33 | hgext/convert/darcs.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) | |
35 | hgext/convert/filemap.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) |
|
34 | hgext/convert/filemap.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) | |
36 | hgext/convert/git.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
35 | hgext/convert/git.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) | |
37 | hgext/convert/gnuarch.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
36 | hgext/convert/gnuarch.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) | |
38 |
hgext/convert/hg.py: error importing: < |
|
37 | hgext/convert/hg.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
39 | hgext/convert/monotone.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
38 | hgext/convert/monotone.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) | |
40 | hgext/convert/p4.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
39 | hgext/convert/p4.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) | |
41 | hgext/convert/subversion.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
40 | hgext/convert/subversion.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) | |
42 | hgext/convert/transport.py: error importing module: <ImportError> No module named 'svn.client' (line *) |
|
41 | hgext/convert/transport.py: error importing module: <ImportError> No module named 'svn.client' (line *) | |
43 | hgext/eol.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
42 | hgext/eol.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
44 |
hgext/extdiff.py: error importing: < |
|
43 | hgext/extdiff.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
45 |
hgext/factotum.py: error importing: < |
|
44 | hgext/factotum.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
46 |
hgext/fetch.py: error importing: < |
|
45 | hgext/fetch.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
47 | hgext/fsmonitor/state.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
46 | hgext/fsmonitor/watchmanclient.py: error importing module: <SystemError> Parent module 'hgext.fsmonitor' not loaded, cannot perform relative import (line *) | |
48 | hgext/fsmonitor/watchmanclient.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
47 | hgext/gpg.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
49 | hgext/gpg.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
48 | hgext/graphlog.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
50 | hgext/graphlog.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
49 | hgext/hgk.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
51 | hgext/hgk.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
50 | hgext/histedit.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
52 | hgext/histedit.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
51 | hgext/journal.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
53 | hgext/journal.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
52 | hgext/keyword.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'httpserver' (error at common.py:*) | |
54 | hgext/keyword.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
53 | hgext/largefiles/basestore.py: error importing module: <SystemError> Parent module 'hgext.largefiles' not loaded, cannot perform relative import (line *) | |
55 | hgext/largefiles/basestore.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
54 | hgext/largefiles/lfcommands.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
56 | hgext/largefiles/lfcommands.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
55 | hgext/largefiles/lfutil.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
57 | hgext/largefiles/lfutil.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
58 | hgext/largefiles/localstore.py: error importing module: <SystemError> Parent module 'hgext.largefiles' not loaded, cannot perform relative import (line *) |
|
56 | hgext/largefiles/localstore.py: error importing module: <SystemError> Parent module 'hgext.largefiles' not loaded, cannot perform relative import (line *) | |
59 |
hgext/largefiles/overrides.py: error importing: < |
|
57 | hgext/largefiles/overrides.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
60 |
hgext/largefiles/proto.py: error importing: < |
|
58 | hgext/largefiles/proto.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
61 |
hgext/largefiles/remotestore.py: error importing: < |
|
59 | hgext/largefiles/remotestore.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
62 |
hgext/largefiles/reposetup.py: error importing: < |
|
60 | hgext/largefiles/reposetup.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
63 |
hgext/largefiles/storefactory.py: error importing: < |
|
61 | hgext/largefiles/storefactory.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
64 |
hgext/largefiles/uisetup.py: error importing: < |
|
62 | hgext/largefiles/uisetup.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'httpserver' (error at common.py:*) | |
65 | hgext/largefiles/wirestore.py: error importing module: <SystemError> Parent module 'hgext.largefiles' not loaded, cannot perform relative import (line *) |
|
63 | hgext/largefiles/wirestore.py: error importing module: <SystemError> Parent module 'hgext.largefiles' not loaded, cannot perform relative import (line *) | |
66 | hgext/mq.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
64 | hgext/mq.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
67 |
hgext/notify.py: error importing: < |
|
65 | hgext/notify.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
68 |
hgext/pager.py: error importing: < |
|
66 | hgext/pager.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
69 |
hgext/patchbomb.py: error importing: < |
|
67 | hgext/patchbomb.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
70 |
hgext/purge.py: error importing: < |
|
68 | hgext/purge.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
71 |
hgext/rebase.py: error importing: < |
|
69 | hgext/rebase.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
72 |
hgext/record.py: error importing: < |
|
70 | hgext/record.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
73 |
hgext/relink.py: error importing: < |
|
71 | hgext/relink.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
74 |
hgext/schemes.py: error importing: < |
|
72 | hgext/schemes.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
75 |
hgext/share.py: error importing: < |
|
73 | hgext/share.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
76 |
hgext/shelve.py: error importing: < |
|
74 | hgext/shelve.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
77 |
hgext/strip.py: error importing: < |
|
75 | hgext/strip.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
78 |
hgext/transplant.py: error importing: < |
|
76 | hgext/transplant.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
79 | hgext/win32text.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
77 | mercurial/archival.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
80 | mercurial/archival.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
78 | mercurial/bundle2.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
81 | mercurial/bookmarks.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
79 | mercurial/bundlerepo.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
82 | mercurial/branchmap.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
80 | mercurial/byterange.py: error importing module: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (line *) | |
83 | mercurial/bundle2.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
81 | mercurial/changelog.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
84 | mercurial/bundlerepo.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
82 | mercurial/cmdutil.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
85 | mercurial/byterange.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
83 | mercurial/commands.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
86 | mercurial/changegroup.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
84 | mercurial/context.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
87 | mercurial/changelog.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
85 | mercurial/crecord.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
88 | mercurial/cmdutil.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
86 | mercurial/dispatch.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
89 | mercurial/commands.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
90 | mercurial/commandserver.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
91 | mercurial/config.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
92 | mercurial/context.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
93 | mercurial/copies.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
94 | mercurial/crecord.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
95 | mercurial/destutil.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
96 | mercurial/dirstate.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
97 | mercurial/discovery.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
98 | mercurial/dispatch.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
99 | mercurial/encoding.py: error importing module: <TypeError> bytes expected, not str (line *) |
|
87 | mercurial/encoding.py: error importing module: <TypeError> bytes expected, not str (line *) | |
100 |
mercurial/exchange.py: error importing: < |
|
88 | mercurial/exchange.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
101 |
mercurial/extensions.py: error importing: < |
|
89 | mercurial/extensions.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
102 |
mercurial/filelog.py: error importing: < |
|
90 | mercurial/filelog.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
103 |
mercurial/filemerge.py: error importing: < |
|
91 | mercurial/filemerge.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
104 |
mercurial/fileset.py: error importing: < |
|
92 | mercurial/fileset.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
105 |
mercurial/formatter.py: error importing: < |
|
93 | mercurial/formatter.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
106 | mercurial/graphmod.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
94 | mercurial/help.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
107 | mercurial/help.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
95 | mercurial/hg.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
108 | mercurial/hg.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
109 | mercurial/hgweb/common.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) |
|
96 | mercurial/hgweb/common.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) | |
110 | mercurial/hgweb/hgweb_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) |
|
97 | mercurial/hgweb/hgweb_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) | |
111 | mercurial/hgweb/hgwebdir_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) |
|
98 | mercurial/hgweb/hgwebdir_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) | |
112 | mercurial/hgweb/protocol.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) |
|
99 | mercurial/hgweb/protocol.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) | |
113 | mercurial/hgweb/request.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) |
|
100 | mercurial/hgweb/request.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) | |
114 | mercurial/hgweb/server.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) |
|
101 | mercurial/hgweb/server.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) | |
115 | mercurial/hgweb/webcommands.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) |
|
102 | mercurial/hgweb/webcommands.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) | |
116 | mercurial/hgweb/webutil.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) |
|
103 | mercurial/hgweb/webutil.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) | |
117 | mercurial/hgweb/wsgicgi.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) |
|
104 | mercurial/hgweb/wsgicgi.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) | |
118 |
mercurial/hook.py: error importing: < |
|
105 | mercurial/hook.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
119 | mercurial/httpconnection.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
106 | mercurial/httpconnection.py: error importing module: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (line *) | |
120 |
|
|
107 | mercurial/httppeer.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
121 | mercurial/i18n.py: error importing module: <TypeError> bytes expected, not str (line *) |
|
108 | mercurial/i18n.py: error importing module: <TypeError> bytes expected, not str (line *) | |
122 | mercurial/keepalive.py: error importing module: <AttributeError> module 'mercurial.util' has no attribute 'httplib' (line *) |
|
109 | mercurial/keepalive.py: error importing module: <AttributeError> module 'mercurial.util' has no attribute 'httplib' (line *) | |
123 | mercurial/localrepo.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) |
|
110 | mercurial/localrepo.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
124 | mercurial/manifest.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
111 | mercurial/manifest.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
125 | mercurial/merge.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
112 | mercurial/merge.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
126 | mercurial/namespaces.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
113 | mercurial/namespaces.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
127 | mercurial/patch.py: error importing module: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (line *) |
|
114 | mercurial/patch.py: error importing module: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (line *) | |
128 | mercurial/pvec.py: error importing module: <NameError> name 'xrange' is not defined (line *) |
|
115 | mercurial/pvec.py: error importing module: <NameError> name 'xrange' is not defined (line *) | |
129 | mercurial/repair.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) |
|
116 | mercurial/repair.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
130 | mercurial/revlog.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
117 | mercurial/revlog.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
131 | mercurial/revset.py: error importing module: <AttributeError> 'dict' object has no attribute 'iteritems' (line *) |
|
118 | mercurial/revset.py: error importing module: <AttributeError> 'dict' object has no attribute 'iteritems' (line *) | |
132 | mercurial/scmwindows.py: error importing module: <ImportError> No module named 'winreg' (line *) |
|
119 | mercurial/scmwindows.py: error importing module: <ImportError> No module named 'winreg' (line *) | |
133 | mercurial/sshpeer.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) |
|
120 | mercurial/sshpeer.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
134 | mercurial/sshserver.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
121 | mercurial/sshserver.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
135 | mercurial/statichttprepo.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at byterange.py:*) |
|
122 | mercurial/statichttprepo.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at byterange.py:*) | |
136 | mercurial/store.py: error importing module: <NameError> name 'xrange' is not defined (line *) |
|
123 | mercurial/store.py: error importing module: <NameError> name 'xrange' is not defined (line *) | |
137 | mercurial/subrepo.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
124 | mercurial/subrepo.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
138 | mercurial/templatefilters.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
125 | mercurial/templatefilters.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
139 | mercurial/templatekw.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
126 | mercurial/templatekw.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
140 | mercurial/templater.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
127 | mercurial/templater.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
141 | mercurial/ui.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
128 | mercurial/ui.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
142 | mercurial/unionrepo.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) |
|
129 | mercurial/unionrepo.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'stringio' (error at patch.py:*) | |
143 | mercurial/url.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) |
|
130 | mercurial/url.py: error importing: <AttributeError> module 'mercurial.util' has no attribute 'urlerr' (error at httpconnection.py:*) | |
144 | mercurial/win32.py: error importing module: <ImportError> No module named 'msvcrt' (line *) |
|
131 | mercurial/win32.py: error importing module: <ImportError> No module named 'msvcrt' (line *) | |
145 | mercurial/windows.py: error importing module: <ImportError> No module named 'msvcrt' (line *) |
|
132 | mercurial/windows.py: error importing module: <ImportError> No module named 'msvcrt' (line *) | |
146 | mercurial/wireproto.py: error importing: <TypeError> %b requires bytes, or an object that implements __bytes__, not 'str' (error at bundle2.py:*) |
|
133 | mercurial/wireproto.py: error importing: <TypeError> %b requires bytes, or an object that implements __bytes__, not 'str' (error at bundle2.py:*) | |
147 |
|
134 | |||
148 | #endif |
|
135 | #endif | |
149 |
|
136 | |||
150 | #if py3exe py3pygments |
|
137 | #if py3exe py3pygments | |
151 |
$ hg files 'set:(**.py) and grep(pygments) |
|
138 | $ hg files 'set:(**.py) and grep(pygments)' | sed 's|\\|/|g' \ | |
152 | > | xargs $PYTHON3 contrib/check-py3-compat.py \ |
|
139 | > | xargs $PYTHON3 contrib/check-py3-compat.py \ | |
153 | > | sed 's/[0-9][0-9]*)$/*)/' |
|
140 | > | sed 's/[0-9][0-9]*)$/*)/' | |
154 | hgext/highlight/highlight.py: error importing: <TypeError> Can't mix strings and bytes in path components (error at i18n.py:*) |
|
|||
155 | #endif |
|
141 | #endif |
General Comments 0
You need to be logged in to leave comments.
Login now