Show More
@@ -1,126 +1,135 b'' | |||||
1 | # factotum.py - Plan 9 factotum integration for Mercurial |
|
1 | # factotum.py - Plan 9 factotum integration for Mercurial | |
2 | # |
|
2 | # | |
3 | # Copyright (C) 2012 Steven Stallion <sstallion@gmail.com> |
|
3 | # Copyright (C) 2012 Steven Stallion <sstallion@gmail.com> | |
4 | # |
|
4 | # | |
5 | # This program is free software; you can redistribute it and/or modify it |
|
5 | # This program is free software; you can redistribute it and/or modify it | |
6 | # under the terms of the GNU General Public License as published by the |
|
6 | # under the terms of the GNU General Public License as published by the | |
7 | # Free Software Foundation; either version 2 of the License, or (at your |
|
7 | # Free Software Foundation; either version 2 of the License, or (at your | |
8 | # option) any later version. |
|
8 | # option) any later version. | |
9 | # |
|
9 | # | |
10 | # This program is distributed in the hope that it will be useful, but |
|
10 | # This program is distributed in the hope that it will be useful, but | |
11 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | # WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
|
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General | |
13 | # Public License for more details. |
|
13 | # Public License for more details. | |
14 | # |
|
14 | # | |
15 | # You should have received a copy of the GNU General Public License along |
|
15 | # You should have received a copy of the GNU General Public License along | |
16 | # with this program; if not, write to the Free Software Foundation, Inc., |
|
16 | # with this program; if not, write to the Free Software Foundation, Inc., | |
17 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
|
17 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
18 |
|
18 | |||
19 | '''http authentication with factotum |
|
19 | '''http authentication with factotum | |
20 |
|
20 | |||
21 | This extension allows the factotum(4) facility on Plan 9 from Bell Labs |
|
21 | This extension allows the factotum(4) facility on Plan 9 from Bell Labs | |
22 | platforms to provide authentication information for HTTP access. Configuration |
|
22 | platforms to provide authentication information for HTTP access. Configuration | |
23 | entries specified in the auth section as well as authentication information |
|
23 | entries specified in the auth section as well as authentication information | |
24 | provided in the repository URL are fully supported. If no prefix is specified, |
|
24 | provided in the repository URL are fully supported. If no prefix is specified, | |
25 | a value of "*" will be assumed. |
|
25 | a value of "*" will be assumed. | |
26 |
|
26 | |||
27 | By default, keys are specified as:: |
|
27 | By default, keys are specified as:: | |
28 |
|
28 | |||
29 | proto=pass service=hg prefix=<prefix> user=<username> !password=<password> |
|
29 | proto=pass service=hg prefix=<prefix> user=<username> !password=<password> | |
30 |
|
30 | |||
31 | If the factotum extension is unable to read the required key, one will be |
|
31 | If the factotum extension is unable to read the required key, one will be | |
32 | requested interactively. |
|
32 | requested interactively. | |
33 |
|
33 | |||
34 | A configuration section is available to customize runtime behavior. By |
|
34 | A configuration section is available to customize runtime behavior. By | |
35 | default, these entries are:: |
|
35 | default, these entries are:: | |
36 |
|
36 | |||
37 | [factotum] |
|
37 | [factotum] | |
38 | executable = /bin/auth/factotum |
|
38 | executable = /bin/auth/factotum | |
39 | mountpoint = /mnt/factotum |
|
39 | mountpoint = /mnt/factotum | |
40 | service = hg |
|
40 | service = hg | |
41 |
|
41 | |||
42 | The executable entry defines the full path to the factotum binary. The |
|
42 | The executable entry defines the full path to the factotum binary. The | |
43 | mountpoint entry defines the path to the factotum file service. Lastly, the |
|
43 | mountpoint entry defines the path to the factotum file service. Lastly, the | |
44 | service entry controls the service name used when reading keys. |
|
44 | service entry controls the service name used when reading keys. | |
45 |
|
45 | |||
46 | ''' |
|
46 | ''' | |
47 |
|
47 | |||
|
48 | from __future__ import absolute_import | |||
|
49 | ||||
|
50 | import os | |||
48 | from mercurial.i18n import _ |
|
51 | from mercurial.i18n import _ | |
49 |
from mercurial |
|
52 | from mercurial import ( | |
50 | from mercurial import httpconnection, error |
|
53 | error, | |
51 | import os, urllib2 |
|
54 | httpconnection, | |
|
55 | url, | |||
|
56 | util, | |||
|
57 | ) | |||
|
58 | ||||
|
59 | urlreq = util.urlreq | |||
|
60 | passwordmgr = url.passwordmgr | |||
52 |
|
61 | |||
53 | ERRMAX = 128 |
|
62 | ERRMAX = 128 | |
54 |
|
63 | |||
55 | _executable = _mountpoint = _service = None |
|
64 | _executable = _mountpoint = _service = None | |
56 |
|
65 | |||
57 | def auth_getkey(self, params): |
|
66 | def auth_getkey(self, params): | |
58 | if not self.ui.interactive(): |
|
67 | if not self.ui.interactive(): | |
59 | raise error.Abort(_('factotum not interactive')) |
|
68 | raise error.Abort(_('factotum not interactive')) | |
60 | if 'user=' not in params: |
|
69 | if 'user=' not in params: | |
61 | params = '%s user?' % params |
|
70 | params = '%s user?' % params | |
62 | params = '%s !password?' % params |
|
71 | params = '%s !password?' % params | |
63 | os.system("%s -g '%s'" % (_executable, params)) |
|
72 | os.system("%s -g '%s'" % (_executable, params)) | |
64 |
|
73 | |||
65 | def auth_getuserpasswd(self, getkey, params): |
|
74 | def auth_getuserpasswd(self, getkey, params): | |
66 | params = 'proto=pass %s' % params |
|
75 | params = 'proto=pass %s' % params | |
67 | while True: |
|
76 | while True: | |
68 | fd = os.open('%s/rpc' % _mountpoint, os.O_RDWR) |
|
77 | fd = os.open('%s/rpc' % _mountpoint, os.O_RDWR) | |
69 | try: |
|
78 | try: | |
70 | os.write(fd, 'start %s' % params) |
|
79 | os.write(fd, 'start %s' % params) | |
71 | l = os.read(fd, ERRMAX).split() |
|
80 | l = os.read(fd, ERRMAX).split() | |
72 | if l[0] == 'ok': |
|
81 | if l[0] == 'ok': | |
73 | os.write(fd, 'read') |
|
82 | os.write(fd, 'read') | |
74 | status, user, passwd = os.read(fd, ERRMAX).split(None, 2) |
|
83 | status, user, passwd = os.read(fd, ERRMAX).split(None, 2) | |
75 | if status == 'ok': |
|
84 | if status == 'ok': | |
76 | if passwd.startswith("'"): |
|
85 | if passwd.startswith("'"): | |
77 | if passwd.endswith("'"): |
|
86 | if passwd.endswith("'"): | |
78 | passwd = passwd[1:-1].replace("''", "'") |
|
87 | passwd = passwd[1:-1].replace("''", "'") | |
79 | else: |
|
88 | else: | |
80 | raise error.Abort(_('malformed password string')) |
|
89 | raise error.Abort(_('malformed password string')) | |
81 | return (user, passwd) |
|
90 | return (user, passwd) | |
82 | except (OSError, IOError): |
|
91 | except (OSError, IOError): | |
83 | raise error.Abort(_('factotum not responding')) |
|
92 | raise error.Abort(_('factotum not responding')) | |
84 | finally: |
|
93 | finally: | |
85 | os.close(fd) |
|
94 | os.close(fd) | |
86 | getkey(self, params) |
|
95 | getkey(self, params) | |
87 |
|
96 | |||
88 | def monkeypatch_method(cls): |
|
97 | def monkeypatch_method(cls): | |
89 | def decorator(func): |
|
98 | def decorator(func): | |
90 | setattr(cls, func.__name__, func) |
|
99 | setattr(cls, func.__name__, func) | |
91 | return func |
|
100 | return func | |
92 | return decorator |
|
101 | return decorator | |
93 |
|
102 | |||
94 | @monkeypatch_method(passwordmgr) |
|
103 | @monkeypatch_method(passwordmgr) | |
95 | def find_user_password(self, realm, authuri): |
|
104 | def find_user_password(self, realm, authuri): | |
96 |
user, passwd = url |
|
105 | user, passwd = urlreq.httppasswordmgrwithdefaultrealm.find_user_password( | |
97 | self, realm, authuri) |
|
106 | self, realm, authuri) | |
98 | if user and passwd: |
|
107 | if user and passwd: | |
99 | self._writedebug(user, passwd) |
|
108 | self._writedebug(user, passwd) | |
100 | return (user, passwd) |
|
109 | return (user, passwd) | |
101 |
|
110 | |||
102 | prefix = '' |
|
111 | prefix = '' | |
103 | res = httpconnection.readauthforuri(self.ui, authuri, user) |
|
112 | res = httpconnection.readauthforuri(self.ui, authuri, user) | |
104 | if res: |
|
113 | if res: | |
105 | _, auth = res |
|
114 | _, auth = res | |
106 | prefix = auth.get('prefix') |
|
115 | prefix = auth.get('prefix') | |
107 | user, passwd = auth.get('username'), auth.get('password') |
|
116 | user, passwd = auth.get('username'), auth.get('password') | |
108 | if not user or not passwd: |
|
117 | if not user or not passwd: | |
109 | if not prefix: |
|
118 | if not prefix: | |
110 | prefix = realm.split(' ')[0].lower() |
|
119 | prefix = realm.split(' ')[0].lower() | |
111 | params = 'service=%s prefix=%s' % (_service, prefix) |
|
120 | params = 'service=%s prefix=%s' % (_service, prefix) | |
112 | if user: |
|
121 | if user: | |
113 | params = '%s user=%s' % (params, user) |
|
122 | params = '%s user=%s' % (params, user) | |
114 | user, passwd = auth_getuserpasswd(self, auth_getkey, params) |
|
123 | user, passwd = auth_getuserpasswd(self, auth_getkey, params) | |
115 |
|
124 | |||
116 | self.add_password(realm, authuri, user, passwd) |
|
125 | self.add_password(realm, authuri, user, passwd) | |
117 | self._writedebug(user, passwd) |
|
126 | self._writedebug(user, passwd) | |
118 | return (user, passwd) |
|
127 | return (user, passwd) | |
119 |
|
128 | |||
120 | def uisetup(ui): |
|
129 | def uisetup(ui): | |
121 | global _executable |
|
130 | global _executable | |
122 | _executable = ui.config('factotum', 'executable', '/bin/auth/factotum') |
|
131 | _executable = ui.config('factotum', 'executable', '/bin/auth/factotum') | |
123 | global _mountpoint |
|
132 | global _mountpoint | |
124 | _mountpoint = ui.config('factotum', 'mountpoint', '/mnt/factotum') |
|
133 | _mountpoint = ui.config('factotum', 'mountpoint', '/mnt/factotum') | |
125 | global _service |
|
134 | global _service | |
126 | _service = ui.config('factotum', 'service', 'hg') |
|
135 | _service = ui.config('factotum', 'service', 'hg') |
@@ -1,177 +1,176 b'' | |||||
1 | #require test-repo |
|
1 | #require test-repo | |
2 |
|
2 | |||
3 | $ cd "$TESTDIR"/.. |
|
3 | $ cd "$TESTDIR"/.. | |
4 |
|
4 | |||
5 | $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py |
|
5 | $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py | |
6 | hgext/factotum.py not using absolute_import |
|
|||
7 | hgext/fetch.py not using absolute_import |
|
6 | hgext/fetch.py not using absolute_import | |
8 | hgext/fsmonitor/pywatchman/__init__.py not using absolute_import |
|
7 | hgext/fsmonitor/pywatchman/__init__.py not using absolute_import | |
9 | hgext/fsmonitor/pywatchman/__init__.py requires print_function |
|
8 | hgext/fsmonitor/pywatchman/__init__.py requires print_function | |
10 | hgext/fsmonitor/pywatchman/capabilities.py not using absolute_import |
|
9 | hgext/fsmonitor/pywatchman/capabilities.py not using absolute_import | |
11 | hgext/fsmonitor/pywatchman/pybser.py not using absolute_import |
|
10 | hgext/fsmonitor/pywatchman/pybser.py not using absolute_import | |
12 | hgext/gpg.py not using absolute_import |
|
11 | hgext/gpg.py not using absolute_import | |
13 | hgext/graphlog.py not using absolute_import |
|
12 | hgext/graphlog.py not using absolute_import | |
14 | hgext/hgcia.py not using absolute_import |
|
13 | hgext/hgcia.py not using absolute_import | |
15 | hgext/hgk.py not using absolute_import |
|
14 | hgext/hgk.py not using absolute_import | |
16 | hgext/highlight/__init__.py not using absolute_import |
|
15 | hgext/highlight/__init__.py not using absolute_import | |
17 | hgext/highlight/highlight.py not using absolute_import |
|
16 | hgext/highlight/highlight.py not using absolute_import | |
18 | hgext/histedit.py not using absolute_import |
|
17 | hgext/histedit.py not using absolute_import | |
19 | hgext/largefiles/__init__.py not using absolute_import |
|
18 | hgext/largefiles/__init__.py not using absolute_import | |
20 | hgext/largefiles/basestore.py not using absolute_import |
|
19 | hgext/largefiles/basestore.py not using absolute_import | |
21 | hgext/largefiles/lfcommands.py not using absolute_import |
|
20 | hgext/largefiles/lfcommands.py not using absolute_import | |
22 | hgext/largefiles/lfutil.py not using absolute_import |
|
21 | hgext/largefiles/lfutil.py not using absolute_import | |
23 | hgext/largefiles/localstore.py not using absolute_import |
|
22 | hgext/largefiles/localstore.py not using absolute_import | |
24 | hgext/largefiles/overrides.py not using absolute_import |
|
23 | hgext/largefiles/overrides.py not using absolute_import | |
25 | hgext/largefiles/proto.py not using absolute_import |
|
24 | hgext/largefiles/proto.py not using absolute_import | |
26 | hgext/largefiles/remotestore.py not using absolute_import |
|
25 | hgext/largefiles/remotestore.py not using absolute_import | |
27 | hgext/largefiles/reposetup.py not using absolute_import |
|
26 | hgext/largefiles/reposetup.py not using absolute_import | |
28 | hgext/largefiles/uisetup.py not using absolute_import |
|
27 | hgext/largefiles/uisetup.py not using absolute_import | |
29 | hgext/largefiles/wirestore.py not using absolute_import |
|
28 | hgext/largefiles/wirestore.py not using absolute_import | |
30 | hgext/mq.py not using absolute_import |
|
29 | hgext/mq.py not using absolute_import | |
31 | hgext/rebase.py not using absolute_import |
|
30 | hgext/rebase.py not using absolute_import | |
32 | hgext/share.py not using absolute_import |
|
31 | hgext/share.py not using absolute_import | |
33 | hgext/win32text.py not using absolute_import |
|
32 | hgext/win32text.py not using absolute_import | |
34 | i18n/check-translation.py not using absolute_import |
|
33 | i18n/check-translation.py not using absolute_import | |
35 | i18n/polib.py not using absolute_import |
|
34 | i18n/polib.py not using absolute_import | |
36 | setup.py not using absolute_import |
|
35 | setup.py not using absolute_import | |
37 | tests/heredoctest.py requires print_function |
|
36 | tests/heredoctest.py requires print_function | |
38 | tests/md5sum.py not using absolute_import |
|
37 | tests/md5sum.py not using absolute_import | |
39 | tests/readlink.py not using absolute_import |
|
38 | tests/readlink.py not using absolute_import | |
40 | tests/readlink.py requires print_function |
|
39 | tests/readlink.py requires print_function | |
41 | tests/run-tests.py not using absolute_import |
|
40 | tests/run-tests.py not using absolute_import | |
42 | tests/svn-safe-append.py not using absolute_import |
|
41 | tests/svn-safe-append.py not using absolute_import | |
43 | tests/test-atomictempfile.py not using absolute_import |
|
42 | tests/test-atomictempfile.py not using absolute_import | |
44 | tests/test-demandimport.py not using absolute_import |
|
43 | tests/test-demandimport.py not using absolute_import | |
45 |
|
44 | |||
46 | #if py3exe |
|
45 | #if py3exe | |
47 | $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs $PYTHON3 contrib/check-py3-compat.py |
|
46 | $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs $PYTHON3 contrib/check-py3-compat.py | |
48 | contrib/check-code.py: invalid syntax: (unicode error) 'unicodeescape' codec can't decode bytes in position *-*: malformed \N character escape (<unknown>, line *) (glob) |
|
47 | contrib/check-code.py: invalid syntax: (unicode error) 'unicodeescape' codec can't decode bytes in position *-*: malformed \N character escape (<unknown>, line *) (glob) | |
49 | doc/hgmanpage.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) |
|
48 | doc/hgmanpage.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) | |
50 | hgext/automv.py: error importing module: <SyntaxError> invalid syntax (commands.py, line *) (line *) (glob) |
|
49 | hgext/automv.py: error importing module: <SyntaxError> invalid syntax (commands.py, line *) (line *) (glob) | |
51 | hgext/blackbox.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
50 | hgext/blackbox.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
52 | hgext/bugzilla.py: error importing module: <ImportError> No module named 'urlparse' (line *) (glob) |
|
51 | hgext/bugzilla.py: error importing module: <ImportError> No module named 'urlparse' (line *) (glob) | |
53 | hgext/censor.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
52 | hgext/censor.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
54 | hgext/chgserver.py: error importing module: <ImportError> No module named 'SocketServer' (line *) (glob) |
|
53 | hgext/chgserver.py: error importing module: <ImportError> No module named 'SocketServer' (line *) (glob) | |
55 | hgext/children.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
54 | hgext/children.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
56 | hgext/churn.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
55 | hgext/churn.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
57 | hgext/clonebundles.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
56 | hgext/clonebundles.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
58 | hgext/color.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) |
|
57 | hgext/color.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) | |
59 | hgext/convert/bzr.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) |
|
58 | hgext/convert/bzr.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) | |
60 | hgext/convert/common.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob) |
|
59 | hgext/convert/common.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob) | |
61 | hgext/convert/convcmd.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) |
|
60 | hgext/convert/convcmd.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) | |
62 | hgext/convert/cvs.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) |
|
61 | hgext/convert/cvs.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) | |
63 | hgext/convert/cvsps.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob) |
|
62 | hgext/convert/cvsps.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob) | |
64 | hgext/convert/darcs.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) |
|
63 | hgext/convert/darcs.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) | |
65 | hgext/convert/filemap.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) |
|
64 | hgext/convert/filemap.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) | |
66 | hgext/convert/git.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) |
|
65 | hgext/convert/git.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) | |
67 | hgext/convert/gnuarch.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) |
|
66 | hgext/convert/gnuarch.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) | |
68 | hgext/convert/hg.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
67 | hgext/convert/hg.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
69 | hgext/convert/monotone.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) |
|
68 | hgext/convert/monotone.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) | |
70 | hgext/convert/p*.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) |
|
69 | hgext/convert/p*.py: error importing module: <SystemError> Parent module 'hgext.convert' not loaded, cannot perform relative import (line *) (glob) | |
71 | hgext/convert/subversion.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob) |
|
70 | hgext/convert/subversion.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob) | |
72 | hgext/convert/transport.py: error importing module: <ImportError> No module named 'svn.client' (line *) (glob) |
|
71 | hgext/convert/transport.py: error importing module: <ImportError> No module named 'svn.client' (line *) (glob) | |
73 | hgext/eol.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
72 | hgext/eol.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
74 | hgext/extdiff.py: error importing module: <SyntaxError> invalid syntax (archival.py, line *) (line *) (glob) |
|
73 | hgext/extdiff.py: error importing module: <SyntaxError> invalid syntax (archival.py, line *) (line *) (glob) | |
75 |
hgext/factotum.py: error importing: <ImportError> No module named 'httplib' (error at |
|
74 | hgext/factotum.py: error importing: <ImportError> No module named 'httplib' (error at __init__.py:*) (glob) | |
76 | hgext/fetch.py: error importing module: <SyntaxError> invalid syntax (commands.py, line *) (line *) (glob) |
|
75 | hgext/fetch.py: error importing module: <SyntaxError> invalid syntax (commands.py, line *) (line *) (glob) | |
77 | hgext/fsmonitor/watchmanclient.py: error importing module: <SystemError> Parent module 'hgext.fsmonitor' not loaded, cannot perform relative import (line *) (glob) |
|
76 | hgext/fsmonitor/watchmanclient.py: error importing module: <SystemError> Parent module 'hgext.fsmonitor' not loaded, cannot perform relative import (line *) (glob) | |
78 | hgext/gpg.py: error importing module: <SyntaxError> invalid syntax (commands.py, line *) (line *) (glob) |
|
77 | hgext/gpg.py: error importing module: <SyntaxError> invalid syntax (commands.py, line *) (line *) (glob) | |
79 | hgext/graphlog.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
78 | hgext/graphlog.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
80 | hgext/hgcia.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
79 | hgext/hgcia.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
81 | hgext/hgk.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
80 | hgext/hgk.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
82 | hgext/histedit.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) |
|
81 | hgext/histedit.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) | |
83 | hgext/keyword.py: error importing: <ImportError> No module named 'BaseHTTPServer' (error at common.py:*) (glob) |
|
82 | hgext/keyword.py: error importing: <ImportError> No module named 'BaseHTTPServer' (error at common.py:*) (glob) | |
84 | hgext/largefiles/basestore.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) |
|
83 | hgext/largefiles/basestore.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) | |
85 | hgext/largefiles/lfcommands.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) |
|
84 | hgext/largefiles/lfcommands.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) | |
86 | hgext/largefiles/lfutil.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
85 | hgext/largefiles/lfutil.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
87 | hgext/largefiles/localstore.py: error importing module: <ImportError> No module named 'lfutil' (line *) (glob) |
|
86 | hgext/largefiles/localstore.py: error importing module: <ImportError> No module named 'lfutil' (line *) (glob) | |
88 | hgext/largefiles/overrides.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) |
|
87 | hgext/largefiles/overrides.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) | |
89 | hgext/largefiles/proto.py: error importing: <ImportError> No module named 'httplib' (error at httppeer.py:*) (glob) |
|
88 | hgext/largefiles/proto.py: error importing: <ImportError> No module named 'httplib' (error at httppeer.py:*) (glob) | |
90 | hgext/largefiles/remotestore.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at wireproto.py:*) (glob) |
|
89 | hgext/largefiles/remotestore.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at wireproto.py:*) (glob) | |
91 | hgext/largefiles/reposetup.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
90 | hgext/largefiles/reposetup.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
92 | hgext/largefiles/uisetup.py: error importing module: <SyntaxError> invalid syntax (archival.py, line *) (line *) (glob) |
|
91 | hgext/largefiles/uisetup.py: error importing module: <SyntaxError> invalid syntax (archival.py, line *) (line *) (glob) | |
93 | hgext/largefiles/wirestore.py: error importing module: <ImportError> No module named 'lfutil' (line *) (glob) |
|
92 | hgext/largefiles/wirestore.py: error importing module: <ImportError> No module named 'lfutil' (line *) (glob) | |
94 | hgext/mq.py: error importing module: <SyntaxError> invalid syntax (commands.py, line *) (line *) (glob) |
|
93 | hgext/mq.py: error importing module: <SyntaxError> invalid syntax (commands.py, line *) (line *) (glob) | |
95 | hgext/notify.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
94 | hgext/notify.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
96 | hgext/pager.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
95 | hgext/pager.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
97 | hgext/patchbomb.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
96 | hgext/patchbomb.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
98 | hgext/purge.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
97 | hgext/purge.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
99 | hgext/rebase.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) |
|
98 | hgext/rebase.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) | |
100 | hgext/record.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
99 | hgext/record.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
101 | hgext/relink.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
100 | hgext/relink.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
102 | hgext/schemes.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
101 | hgext/schemes.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
103 | hgext/share.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
102 | hgext/share.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
104 | hgext/shelve.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) |
|
103 | hgext/shelve.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) | |
105 | hgext/strip.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
104 | hgext/strip.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
106 | hgext/transplant.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) |
|
105 | hgext/transplant.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) | |
107 | mercurial/archival.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) |
|
106 | mercurial/archival.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) | |
108 | mercurial/branchmap.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
107 | mercurial/branchmap.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
109 | mercurial/bundle*.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) |
|
108 | mercurial/bundle*.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) | |
110 | mercurial/bundlerepo.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) |
|
109 | mercurial/bundlerepo.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) | |
111 | mercurial/changegroup.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
110 | mercurial/changegroup.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
112 | mercurial/changelog.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
111 | mercurial/changelog.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
113 | mercurial/cmdutil.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
112 | mercurial/cmdutil.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
114 | mercurial/commands.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) |
|
113 | mercurial/commands.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) | |
115 | mercurial/commandserver.py: error importing module: <ImportError> No module named 'SocketServer' (line *) (glob) |
|
114 | mercurial/commandserver.py: error importing module: <ImportError> No module named 'SocketServer' (line *) (glob) | |
116 | mercurial/context.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
115 | mercurial/context.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
117 | mercurial/copies.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
116 | mercurial/copies.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
118 | mercurial/crecord.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
117 | mercurial/crecord.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
119 | mercurial/dirstate.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
118 | mercurial/dirstate.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
120 | mercurial/discovery.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
119 | mercurial/discovery.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
121 | mercurial/dispatch.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
120 | mercurial/dispatch.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
122 | mercurial/exchange.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) |
|
121 | mercurial/exchange.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) | |
123 | mercurial/extensions.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
122 | mercurial/extensions.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
124 | mercurial/filelog.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
123 | mercurial/filelog.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
125 | mercurial/filemerge.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
124 | mercurial/filemerge.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
126 | mercurial/fileset.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
125 | mercurial/fileset.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
127 | mercurial/formatter.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob) |
|
126 | mercurial/formatter.py: error importing module: <ImportError> No module named 'cPickle' (line *) (glob) | |
128 | mercurial/graphmod.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
127 | mercurial/graphmod.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
129 | mercurial/help.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
128 | mercurial/help.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
130 | mercurial/hg.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) |
|
129 | mercurial/hg.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at bundlerepo.py:*) (glob) | |
131 | mercurial/hgweb/common.py: error importing module: <ImportError> No module named 'BaseHTTPServer' (line *) (glob) |
|
130 | mercurial/hgweb/common.py: error importing module: <ImportError> No module named 'BaseHTTPServer' (line *) (glob) | |
132 | mercurial/hgweb/hgweb_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) |
|
131 | mercurial/hgweb/hgweb_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) | |
133 | mercurial/hgweb/hgwebdir_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) |
|
132 | mercurial/hgweb/hgwebdir_mod.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) | |
134 | mercurial/hgweb/protocol.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) |
|
133 | mercurial/hgweb/protocol.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) | |
135 | mercurial/hgweb/request.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) |
|
134 | mercurial/hgweb/request.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) | |
136 | mercurial/hgweb/server.py: error importing module: <ImportError> No module named 'BaseHTTPServer' (line *) (glob) |
|
135 | mercurial/hgweb/server.py: error importing module: <ImportError> No module named 'BaseHTTPServer' (line *) (glob) | |
137 | mercurial/hgweb/webcommands.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) |
|
136 | mercurial/hgweb/webcommands.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) | |
138 | mercurial/hgweb/webutil.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) |
|
137 | mercurial/hgweb/webutil.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) | |
139 | mercurial/hgweb/wsgicgi.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) |
|
138 | mercurial/hgweb/wsgicgi.py: error importing module: <SystemError> Parent module 'mercurial.hgweb' not loaded, cannot perform relative import (line *) (glob) | |
140 | mercurial/hook.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
139 | mercurial/hook.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
141 | mercurial/httpclient/_readers.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob) |
|
140 | mercurial/httpclient/_readers.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob) | |
142 | mercurial/httpconnection.py: error importing: <ImportError> No module named 'httplib' (error at __init__.py:*) (glob) |
|
141 | mercurial/httpconnection.py: error importing: <ImportError> No module named 'httplib' (error at __init__.py:*) (glob) | |
143 | mercurial/httppeer.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob) |
|
142 | mercurial/httppeer.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob) | |
144 | mercurial/keepalive.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob) |
|
143 | mercurial/keepalive.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob) | |
145 | mercurial/localrepo.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
144 | mercurial/localrepo.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
146 | mercurial/mail.py: error importing module: <AttributeError> module 'email' has no attribute 'Header' (line *) (glob) |
|
145 | mercurial/mail.py: error importing module: <AttributeError> module 'email' has no attribute 'Header' (line *) (glob) | |
147 | mercurial/manifest.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
146 | mercurial/manifest.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
148 | mercurial/merge.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
147 | mercurial/merge.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
149 | mercurial/namespaces.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
148 | mercurial/namespaces.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
150 | mercurial/patch.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
149 | mercurial/patch.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
151 | mercurial/pure/mpatch.py: error importing module: <ImportError> cannot import name 'pycompat' (line *) (glob) |
|
150 | mercurial/pure/mpatch.py: error importing module: <ImportError> cannot import name 'pycompat' (line *) (glob) | |
152 | mercurial/pure/parsers.py: error importing module: <ImportError> No module named 'mercurial.pure.node' (line *) (glob) |
|
151 | mercurial/pure/parsers.py: error importing module: <ImportError> No module named 'mercurial.pure.node' (line *) (glob) | |
153 | mercurial/repair.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) |
|
152 | mercurial/repair.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) | |
154 | mercurial/revlog.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
153 | mercurial/revlog.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
155 | mercurial/revset.py: error importing module: <AttributeError> 'dict' object has no attribute 'iteritems' (line *) (glob) |
|
154 | mercurial/revset.py: error importing module: <AttributeError> 'dict' object has no attribute 'iteritems' (line *) (glob) | |
156 | mercurial/scmutil.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
155 | mercurial/scmutil.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
157 | mercurial/scmwindows.py: error importing module: <ImportError> No module named '_winreg' (line *) (glob) |
|
156 | mercurial/scmwindows.py: error importing module: <ImportError> No module named '_winreg' (line *) (glob) | |
158 | mercurial/simplemerge.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
157 | mercurial/simplemerge.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
159 | mercurial/sshpeer.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at wireproto.py:*) (glob) |
|
158 | mercurial/sshpeer.py: error importing: <SyntaxError> invalid syntax (bundle*.py, line *) (error at wireproto.py:*) (glob) | |
160 | mercurial/sshserver.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
159 | mercurial/sshserver.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
161 | mercurial/statichttprepo.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
160 | mercurial/statichttprepo.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
162 | mercurial/store.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
161 | mercurial/store.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
163 | mercurial/streamclone.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
162 | mercurial/streamclone.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
164 | mercurial/subrepo.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
163 | mercurial/subrepo.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
165 | mercurial/templatefilters.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
164 | mercurial/templatefilters.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
166 | mercurial/templatekw.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
165 | mercurial/templatekw.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
167 | mercurial/templater.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
166 | mercurial/templater.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
168 | mercurial/ui.py: error importing: <ImportError> No module named 'cPickle' (error at formatter.py:*) (glob) |
|
167 | mercurial/ui.py: error importing: <ImportError> No module named 'cPickle' (error at formatter.py:*) (glob) | |
169 | mercurial/unionrepo.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
168 | mercurial/unionrepo.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
170 | mercurial/url.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob) |
|
169 | mercurial/url.py: error importing module: <ImportError> No module named 'httplib' (line *) (glob) | |
171 | mercurial/verify.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) |
|
170 | mercurial/verify.py: error importing: <AttributeError> 'dict' object has no attribute 'iteritems' (error at revset.py:*) (glob) | |
172 | mercurial/win*.py: error importing module: <ImportError> No module named 'msvcrt' (line *) (glob) |
|
171 | mercurial/win*.py: error importing module: <ImportError> No module named 'msvcrt' (line *) (glob) | |
173 | mercurial/windows.py: error importing module: <ImportError> No module named '_winreg' (line *) (glob) |
|
172 | mercurial/windows.py: error importing module: <ImportError> No module named '_winreg' (line *) (glob) | |
174 | mercurial/wireproto.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) |
|
173 | mercurial/wireproto.py: error importing module: <SyntaxError> invalid syntax (bundle*.py, line *) (line *) (glob) | |
175 | tests/readlink.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) |
|
174 | tests/readlink.py: invalid syntax: invalid syntax (<unknown>, line *) (glob) | |
176 |
|
175 | |||
177 | #endif |
|
176 | #endif |
General Comments 0
You need to be logged in to leave comments.
Login now