Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [3.11] gh-110631: Fix reST indentation in `Doc/library` (GH-110685) (#110737) | Ezio Melotti | 2023-10-11 | 1 | -24/+27 |
| | | | | | | | | | | * [3.11] gh-110631: Fix reST indentation in `Doc/library` (GH-110685) Fix wrong indentation in the Doc/library dir.. (cherry picked from commit bb7923f556537a463c403dc1097726d8a8e1a6f2) Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> * Fix merge glitch. | ||||
* | [3.11] gh-101100: Sphinx warnings: pick the low hanging fruits (GH-107386) ↵ | Miss Islington (bot) | 2023-07-29 | 1 | -1/+2 |
| | | | | | | | (GH-107418) (cherry picked from commit f2d07d3289947d10b065b2bb7670c8fb6b6582f2) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> | ||||
* | [3.11] Docs: Fix backtick errors found by sphinx-lint (GH-97998) (#98371) | C.A.M. Gerlach | 2022-10-17 | 1 | -1/+1 |
| | | | | | | | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>. (cherry picked from commit fa2d43e5184f5eaf3391844ec2400342a1b2ead4) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> | ||||
* | bpo-43785: Update bz2 document (GH-25351) | Inada Naoki | 2021-04-13 | 1 | -2/+2 |
| | |||||
* | [doc] Fix erroneous backslashes in signatures and names (GH-23658) | Andre Delfino | 2020-12-17 | 1 | -2/+2 |
| | | | | | The issue being resolved is shown in the 3.10 docs (if you select docs for older versions you won't see a visual glitch). The newer sphinx version that produces the 3.10 docs doesn't treat the backslash to escape things in some situations it previously did. | ||||
* | bpo-38738: Fix formatting of True and False. (GH-17083) | Serhiy Storchaka | 2019-11-12 | 1 | -1/+1 |
| | | | | | | | | | * "Return true/false" is replaced with "Return ``True``/``False``" if the function actually returns a bool. * Fixed formatting of some True and False literals (now in monospace). * Replaced "True/False" with "true/false" if it can be not only bool. * Replaced some 1/0 with True/False if it corresponds the code. * "Returns <bool>" is replaced with "Return <bool>". | ||||
* | Tweak PEP 519 documentation in stdlib (#163) | Berker Peksag | 2017-02-19 | 1 | -2/+2 |
| | | | | * Drop duplicate work 'object' in lzma docs * Fix typo in os docs: fpr -> for | ||||
* | Issue #28229: lzma module now supports pathlib | Berker Peksag | 2016-10-04 | 1 | -5/+13 |
| | |||||
* | Issue #28319: Fix typo in lzma.rst | Berker Peksag | 2016-09-30 | 1 | -4/+3 |
| | | | | Reported by Vladimir Rutsky. | ||||
* | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+4 |
| | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | ||||
* | Issue #23529: Limit the size of decompressed data when reading from | Antoine Pitrou | 2015-04-10 | 1 | -0/+4 |
| | | | | | | | | GzipFile, BZ2File or LZMAFile. This defeats denial of service attacks using compressed bombs (i.e. compressed payloads which decompress to a huge size). Patch by Martin Panter and Nikolaus Rath. | ||||
* | Issue #15955: Add an option to limit output size when decompressing LZMA data. | Antoine Pitrou | 2015-01-17 | 1 | -6/+31 |
| | | | | Patch by Nikolaus Rath and Martin Panter. | ||||
* | Closes #18430: Document that peek() may change the position of the underlying | Nadeem Vawda | 2013-12-08 | 1 | -0/+5 |
|\ | | | | | | | file for the BZ2File, GzipFile and LZMAFile classes. | ||||
| * | #18430: Document that peek() may change the position of the underlying file for | Nadeem Vawda | 2013-12-08 | 1 | -0/+5 |
| | | | | | | | | the BZ2File, GzipFile and LZMAFile classes. | ||||
* | | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 1 | -1/+1 |
| | | |||||
* | | Issue #19201: Add support for the 'x' mode to the lzma module. | Nadeem Vawda | 2013-10-18 | 1 | -4/+11 |
|/ | | | | Patch by Tim Heaney and Vajrasky Kok. | ||||
* | Issue #17193: Use binary prefixes (KiB, MiB, GiB) for memory units. | Serhiy Storchaka | 2013-02-16 | 1 | -3/+3 |
| | |||||
* | Prefer lzma.open() over lzma.LZMAFile() in lzma module documentation. | Nadeem Vawda | 2012-09-23 | 1 | -4/+4 |
| | |||||
* | Fix indentation of examples in lzma module documentation. | Nadeem Vawda | 2012-09-23 | 1 | -2/+2 |
| | |||||
* | Make lzma.{encode,decode}_filter_properties private. | Nadeem Vawda | 2012-06-21 | 1 | -26/+0 |
| | | | | | | | | These functions were originally added to support LZMA compression in the zipfile module, and are not of interest for the majority of users. They can be made public in 3.4 if there is user interest, but in the meanwhile, I've opted to present a smaller, simpler API for the module's initial release. | ||||
* | Add a function lzma.open(), to match gzip.open() and bz2.open(). | Nadeem Vawda | 2012-06-04 | 1 | -0/+29 |
| | |||||
* | Allow LZMAFile to accept modes with a "b" suffix. | Nadeem Vawda | 2012-06-04 | 1 | -3/+5 |
| | |||||
* | Simplify usage of LZMAFile's fileobj support, like with BZ2File. | Nadeem Vawda | 2012-06-04 | 1 | -9/+11 |
| | |||||
* | Rename lzma.check_is_supported() to is_check_supported() to avoid ↵ | Nadeem Vawda | 2012-05-06 | 1 | -1/+1 |
| | | | | grammatical confusion. | ||||
* | Add lzma.{encode,decode}_filter_properties(). | Nadeem Vawda | 2012-05-06 | 1 | -0/+26 |
| | |||||
* | Make lzma docs consistent with other compression modules (cf. changeset ↵ | Nadeem Vawda | 2012-02-05 | 1 | -3/+0 |
| | | | | 11bd2d32b4e8). | ||||
* | Document that some of LZMAFile.__init__()'s args are keyword-only. | Nadeem Vawda | 2012-02-04 | 1 | -1/+1 |
| | |||||
* | Add note on memory usage to LZMACompressor doc. | Nadeem Vawda | 2012-01-02 | 1 | -2/+10 |
| | |||||
* | Issue #6715: Add module for compression using the LZMA algorithm. | Nadeem Vawda | 2011-11-29 | 1 | -0/+344 |