##// END OF EJS Templates
pytype: stop excluding wireprotoserver.py...
Matt Harbison -
r49321:81805bba default
parent child Browse files
Show More
@@ -250,7 +250,7 b' def _availableapis(repo):'
250 # Registered APIs are made available via config options of the name of
250 # Registered APIs are made available via config options of the name of
251 # the protocol.
251 # the protocol.
252 for k, v in API_HANDLERS.items():
252 for k, v in API_HANDLERS.items():
253 section, option = v[b'config']
253 section, option = v[b'config'] # pytype: disable=attribute-error
254 if repo.ui.configbool(section, option):
254 if repo.ui.configbool(section, option):
255 apis.add(k)
255 apis.add(k)
256
256
@@ -34,7 +34,6 b' mercurial/unionrepo.py # ui, svfs'
34 mercurial/utils/memorytop.py # not 3.6 compatible
34 mercurial/utils/memorytop.py # not 3.6 compatible
35 mercurial/win32.py # [not-callable]
35 mercurial/win32.py # [not-callable]
36 mercurial/wireprotoframing.py # [unsupported-operands], [attribute-error], [import-error]
36 mercurial/wireprotoframing.py # [unsupported-operands], [attribute-error], [import-error]
37 mercurial/wireprotoserver.py # line 253, in _availableapis: No attribute '__iter__' on Callable[[Any, Any], Any] [attribute-error]
38 mercurial/wireprotov1peer.py # [attribute-error]
37 mercurial/wireprotov1peer.py # [attribute-error]
39 mercurial/wireprotov1server.py # BUG?: BundleValueError handler accesses subclass's attrs
38 mercurial/wireprotov1server.py # BUG?: BundleValueError handler accesses subclass's attrs
40
39
@@ -68,7 +67,6 b' development, but may be a hinderance for'
68 > -x mercurial/utils/memorytop.py \
67 > -x mercurial/utils/memorytop.py \
69 > -x mercurial/win32.py \
68 > -x mercurial/win32.py \
70 > -x mercurial/wireprotoframing.py \
69 > -x mercurial/wireprotoframing.py \
71 > -x mercurial/wireprotoserver.py \
72 > -x mercurial/wireprotov1peer.py \
70 > -x mercurial/wireprotov1peer.py \
73 > -x mercurial/wireprotov1server.py \
71 > -x mercurial/wireprotov1server.py \
74 > > $TESTTMP/pytype-output.txt || cat $TESTTMP/pytype-output.txt
72 > > $TESTTMP/pytype-output.txt || cat $TESTTMP/pytype-output.txt
General Comments 0
You need to be logged in to leave comments. Login now