Show More
@@ -109,7 +109,9 b' def split(stream):' | |||||
109 | def mimesplit(stream, cur): |
|
109 | def mimesplit(stream, cur): | |
110 | def msgfp(m): |
|
110 | def msgfp(m): | |
111 | fp = stringio() |
|
111 | fp = stringio() | |
|
112 | # pytype: disable=wrong-arg-types | |||
112 | g = mail.Generator(fp, mangle_from_=False) |
|
113 | g = mail.Generator(fp, mangle_from_=False) | |
|
114 | # pytype: enable=wrong-arg-types | |||
113 | g.flatten(m) |
|
115 | g.flatten(m) | |
114 | fp.seek(0) |
|
116 | fp.seek(0) | |
115 | return fp |
|
117 | return fp |
@@ -26,7 +26,6 b' mercurial/keepalive.py # [attribu' | |||||
26 | mercurial/localrepo.py # [attribute-error] |
|
26 | mercurial/localrepo.py # [attribute-error] | |
27 | mercurial/manifest.py # [unsupported-operands], [wrong-arg-types] |
|
27 | mercurial/manifest.py # [unsupported-operands], [wrong-arg-types] | |
28 | mercurial/minirst.py # [unsupported-operands], [attribute-error] |
|
28 | mercurial/minirst.py # [unsupported-operands], [attribute-error] | |
29 | mercurial/patch.py # [wrong-arg-types] |
|
|||
30 | mercurial/pure/osutil.py # [invalid-typevar], [not-callable] |
|
29 | mercurial/pure/osutil.py # [invalid-typevar], [not-callable] | |
31 | mercurial/pure/parsers.py # [attribute-error] |
|
30 | mercurial/pure/parsers.py # [attribute-error] | |
32 | mercurial/pycompat.py # bytes vs str issues |
|
31 | mercurial/pycompat.py # bytes vs str issues | |
@@ -65,7 +64,6 b' development, but may be a hinderance for' | |||||
65 | > -x mercurial/localrepo.py \ |
|
64 | > -x mercurial/localrepo.py \ | |
66 | > -x mercurial/manifest.py \ |
|
65 | > -x mercurial/manifest.py \ | |
67 | > -x mercurial/minirst.py \ |
|
66 | > -x mercurial/minirst.py \ | |
68 | > -x mercurial/patch.py \ |
|
|||
69 | > -x mercurial/pure/osutil.py \ |
|
67 | > -x mercurial/pure/osutil.py \ | |
70 | > -x mercurial/pure/parsers.py \ |
|
68 | > -x mercurial/pure/parsers.py \ | |
71 | > -x mercurial/pycompat.py \ |
|
69 | > -x mercurial/pycompat.py \ |
General Comments 0
You need to be logged in to leave comments.
Login now