diff options
author | 180909 <734461790@qq.com> | 2022-05-13 14:06:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 14:06:08 (GMT) |
commit | b39f841047eb9d084e4873050e4d0226cb58eb6f (patch) | |
tree | eab3d3a297975a58170ef70d9763a7e0880cc191 /Doc/library/lzma.rst | |
parent | 664aa94b570a4a8f3535efb2e3d638a4ab655943 (diff) | |
download | cpython-b39f841047eb9d084e4873050e4d0226cb58eb6f.zip cpython-b39f841047eb9d084e4873050e4d0226cb58eb6f.tar.gz cpython-b39f841047eb9d084e4873050e4d0226cb58eb6f.tar.bz2 |
gh-92446: Argparse choices should be a sequence (#92450)
Diffstat (limited to 'Doc/library/lzma.rst')
-rw-r--r-- | Doc/library/lzma.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/lzma.rst b/Doc/library/lzma.rst index 2109264..f7aaa0c 100644 --- a/Doc/library/lzma.rst +++ b/Doc/library/lzma.rst @@ -147,7 +147,7 @@ Compressing and decompressing data in memory This format is more limited than ``.xz`` -- it does not support integrity checks or multiple filters. - * :const:`FORMAT_RAW`: A raw data stream, not using any container format. + * :const:`FORMAT_RAW`: A raw data stream, not using sequences format. This format specifier does not support integrity checks, and requires that you always specify a custom filter chain (for both compression and decompression). Additionally, data compressed in this manner cannot be |