##// END OF EJS Templates
pytype: stop excluding changegroup.py...
Matt Harbison -
r49304:8843c9a8 default
parent child Browse files
Show More
@@ -350,10 +350,11 b' class cg1unpacker(object):'
350
350
351 def ondupchangelog(cl, rev):
351 def ondupchangelog(cl, rev):
352 if rev < clstart:
352 if rev < clstart:
353 duprevs.append(rev)
353 duprevs.append(rev) # pytype: disable=attribute-error
354
354
355 def onchangelog(cl, rev):
355 def onchangelog(cl, rev):
356 ctx = cl.changelogrevision(rev)
356 ctx = cl.changelogrevision(rev)
357 assert efilesset is not None # help pytype
357 efilesset.update(ctx.files)
358 efilesset.update(ctx.files)
358 repo.register_changeset(rev, ctx)
359 repo.register_changeset(rev, ctx)
359
360
@@ -10,7 +10,6 b' endeavor to empty this list out over tim'
10 probably hiding real problems.
10 probably hiding real problems.
11
11
12 mercurial/bundlerepo.py # no vfs and ui attrs on bundlerepo
12 mercurial/bundlerepo.py # no vfs and ui attrs on bundlerepo
13 mercurial/changegroup.py # mysterious incorrect type detection
14 mercurial/chgserver.py # [attribute-error]
13 mercurial/chgserver.py # [attribute-error]
15 mercurial/cmdutil.py # No attribute 'markcopied' on mercurial.context.filectx [attribute-error]
14 mercurial/cmdutil.py # No attribute 'markcopied' on mercurial.context.filectx [attribute-error]
16 mercurial/context.py # many [attribute-error]
15 mercurial/context.py # many [attribute-error]
@@ -56,7 +55,6 b' development, but may be a hinderance for'
56
55
57 $ pytype -V 3.6 --keep-going --jobs auto mercurial \
56 $ pytype -V 3.6 --keep-going --jobs auto mercurial \
58 > -x mercurial/bundlerepo.py \
57 > -x mercurial/bundlerepo.py \
59 > -x mercurial/changegroup.py \
60 > -x mercurial/chgserver.py \
58 > -x mercurial/chgserver.py \
61 > -x mercurial/cmdutil.py \
59 > -x mercurial/cmdutil.py \
62 > -x mercurial/context.py \
60 > -x mercurial/context.py \
General Comments 0
You need to be logged in to leave comments. Login now