Closed sethfischer closed 1 year ago
Include STDOUT and PIPE in the public API as the documentation recommends their use.
This will mean linters do not produce warnings like the following:
'STDOUT' is not declared in __all__
Examples from the documentation recommending the used of STDOUT and PIPE:
STDOUT
PIPE
Demo.ipynb:
Demo.ipynb
from wurlitzer import pipes, sys_pipes, STDOUT, PIPE
README.md:
README.md
from wurlitzer import pipes, STDOUT
Thanks!
released 3.0.3 with this
Include STDOUT and PIPE in the public API as the documentation recommends their use.
This will mean linters do not produce warnings like the following:
Examples from the documentation recommending the used of
STDOUT
andPIPE
:Demo.ipynb
:README.md
: