commit: 135e855953fe7a648d0fd794909445093086bd64 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Sep 25 00:20:54 2022 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Mon Oct 10 16:48:52 2022 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=135e8559
compression: tidy up bzip2 docs Signed-off-by: Sam James <sam <AT> gentoo.org> Closes: https://github.com/pkgcore/snakeoil/pull/84 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> src/snakeoil/compression/_bzip2.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/snakeoil/compression/_bzip2.py b/src/snakeoil/compression/_bzip2.py index b10e3ec3..1a38922c 100644 --- a/src/snakeoil/compression/_bzip2.py +++ b/src/snakeoil/compression/_bzip2.py @@ -1,11 +1,11 @@ """ bzip2 decompression/compression -where possible, this module defers to cpython bz2 module- if it's not available, -it results to executing bzip2 with tempfile arguments to do decompression +Where possible, this module defers to cpython's bz2 module - if it's not available, +it defers to executing bzip2 with tempfile arguments to do decompression and compression. -Should use this module unless its absolutely critical that bz2 module be used +Use this module unless it's absolutely critical that the bz2 module is used. """ __all__ = ("compress_data", "decompress_data")
