Skip to content

Invoke PipedCompressionProgram directly rather than through subclassing #148

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Feb 16, 2024
12 changes: 10 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,16 @@ Changelog

in-development
~~~~~~~~~~~~~~~~~~~
* #146: PipedCompressionReader/Writer are now binary-only. For text reading
they are wrapped in an ``io.TextIOWrapper`` in the ``xopen()`` function.
* #146, #147, #148: Various refactors for better code size and readability:

* PipedCompressionReader/Writer are now combined _PipedCompressionProgram
class.
* _PipedCompressionProgram is binary-only. For text reading and writing
it is wrapped in an ``io.TextIOWrapper`` in the ``xopen()`` function.
* Classes that derive from PipedCompressionReader/Writer have been removed.
* #148: xopen's classes, variables and functions pertaining to piped reading
and writing are all made private by prefixing them with an underscore.
These are not part of the API and may change between releases.

v1.9.0 (2024-01-31)
~~~~~~~~~~~~~~~~~~~
Expand Down
Loading