##// END OF EJS Templates
worker: silence type error when calling pickle...
worker: silence type error when calling pickle pytype is complaining that the argument to `pickle.load()` is not an `IO`. pytype isn't wrong: `_blockingreader` doesn't implement `io.RawIOBase`, only `read()` and `readline()`. But it appears this is enough for pickle. So we silence the false positive. This fixes a regression introduced by D12304 / cc0e059d2af8: worker: remove Python 2 support code. Differential Revision: https://phab.mercurial-scm.org/D12337

File last commit:

r49730:6000f5b2 default
r49767:a0674e91 default
Show More
__init__.py
3 lines | 67 B | text/x-python | PythonLexer
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)